diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-07-09 21:55:15 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-10 20:50:32 +0200 |
| commit | 7a4763153548619b379222d5c22d10b238ba0ac3 (patch) | |
| tree | 9388ed2352aec643e938727bbbc9c9155d9092fb /src/lib/reel_writer.cc | |
| parent | 9e90111e53a0b0739d0789afd26f29e63f803917 (diff) | |
Convert some paths to string.
Diffstat (limited to 'src/lib/reel_writer.cc')
| -rw-r--r-- | src/lib/reel_writer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/reel_writer.cc b/src/lib/reel_writer.cc index bd326e853..5f6f86a00 100644 --- a/src/lib/reel_writer.cc +++ b/src/lib/reel_writer.cc @@ -171,7 +171,7 @@ ReelWriter::ReelWriter( auto new_asset_filename = _output_dir / video_asset_filename(picture_asset, _reel_index, _reel_count, _content_summary); if (_first_nonexistent_frame > 0) { - LOG_GENERAL("Re-using partial asset %1: has frames up to %2", *existing_asset_filename, _first_nonexistent_frame); + LOG_GENERAL("Re-using partial asset %1: has frames up to %2", existing_asset_filename->string(), _first_nonexistent_frame); dcp::filesystem::rename(*existing_asset_filename, new_asset_filename); } remembered_assets.push_back(RememberedAsset(new_asset_filename.filename(), period, film()->video_identifier())); @@ -186,7 +186,7 @@ ReelWriter::ReelWriter( } } else { DCPOMATIC_ASSERT(existing_asset_filename); - LOG_GENERAL("Re-using complete asset %1", *existing_asset_filename); + LOG_GENERAL("Re-using complete asset %1", existing_asset_filename->string()); /* We already have a complete picture asset that we can just re-use */ /* XXX: what about if the encryption key changes? */ auto new_asset_filename = _output_dir / existing_asset_filename->filename(); |
