From: Carl Hetherington Date: Sun, 3 Jul 2016 19:36:02 +0000 (+0100) Subject: Try to fix Arch build error reported by Markus. X-Git-Tag: v2.8.17~10 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=a4c5a9ff48c4cec51e3488f4f8692bf2a2f82dca Try to fix Arch build error reported by Markus. --- diff --git a/test/time_calculation_test.cc b/test/time_calculation_test.cc index ddd685d0c..6c7d69b25 100644 --- a/test/time_calculation_test.cc +++ b/test/time_calculation_test.cc @@ -158,7 +158,7 @@ BOOST_AUTO_TEST_CASE (ffmpeg_time_calculation_test) BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds (1)); /* 25fps content, 24fps DCP; length should be increased */ film->set_video_frame_rate (24); - BOOST_CHECK_SMALL (abs (content->full_length().get() - DCPTime::from_seconds(25.0 / 24).get()), 2); + BOOST_CHECK_SMALL (labs (content->full_length().get() - DCPTime::from_seconds(25.0 / 24).get()), 2L); /* 25fps content, 30fps DCP; length should be decreased */ film->set_video_frame_rate (30); BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds (25.0 / 30));