summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-12-03 00:24:05 +0100
committerCarl Hetherington <cth@carlh.net>2019-12-03 00:24:05 +0100
commit2998afa8238fc826f696a856f272e1f16d166f3c (patch)
tree775688be7a6fa98f3f663285eeef4b1de96fa263
parentd355dcc4f82472a83f542567d4bf7bce7de6884e (diff)
Fix typo.
-rw-r--r--src/lib/reel_writer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/reel_writer.cc b/src/lib/reel_writer.cc
index 8044973ec..071cab12a 100644
--- a/src/lib/reel_writer.cc
+++ b/src/lib/reel_writer.cc
@@ -300,7 +300,7 @@ ReelWriter::finish ()
video_to /= video_asset_filename (_picture_asset, _reel_index, _reel_count, _content_summary);
LOG_GENERAL ("Must put %1 into DCP at %2", video_from.string(), video_to.string());
- LOG_GENERAL ("%2: %2", video_from.string(), boost::filesystem::is_regular_file(video_from) ? "yes" : "no");
+ LOG_GENERAL ("%1: %2", video_from.string(), boost::filesystem::is_regular_file(video_from) ? "yes" : "no");
LOG_GENERAL ("%1: %2", video_to.string(), boost::filesystem::is_regular_file(video_to) ? "yes" : "no");
boost::system::error_code ec;