From a4c5a9ff48c4cec51e3488f4f8692bf2a2f82dca Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 3 Jul 2016 20:36:02 +0100 Subject: [PATCH] Try to fix Arch build error reported by Markus. --- test/time_calculation_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.30.2