summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-05-30 10:37:08 +0100
committerCarl Hetherington <cth@carlh.net>2017-05-30 10:37:08 +0100
commit9024e783e54d5e857b5285b07405f887e6181930 (patch)
treece0f9a9358fe02053217923491a1725c2f2230cd /src/lib
parent452a21994f6268faa159e53ead722a5bd5125b29 (diff)
Fix build.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/reel_writer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/reel_writer.cc b/src/lib/reel_writer.cc
index 13d62f86d..2c74d66bd 100644
--- a/src/lib/reel_writer.cc
+++ b/src/lib/reel_writer.cc
@@ -392,8 +392,8 @@ ReelWriter::create_reel (list<ReferencedReelAsset> const & refs, list<shared_ptr
if (reel_sound_asset->duration() != _period.duration().frames_round (_film->video_frame_rate ())) {
LOG_ERROR (
"Reel sound asset has length %1 but reel period is %2",
- to_string(reel_sound_asset->duration()),
- to_string(_period.duration().frames_round(_film->video_frame_rate()))
+ reel_sound_asset->duration(),
+ _period.duration().frames_round(_film->video_frame_rate())
);
DCPOMATIC_ASSERT (reel_sound_asset->duration() == _period.duration().frames_round (_film->video_frame_rate ()));
}