1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Fix build with clang 3.1

Submitted by:	cy@
This commit is contained in:
Rene Ladan 2013-01-13 10:43:29 +00:00
parent 386fcbc374
commit c0fa58a965
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=310313

View File

@ -0,0 +1,10 @@
--- media/filters/decrypting_audio_decoder.cc.orig 2013-01-07 18:40:10.000000000 -0800
+++ media/filters/decrypting_audio_decoder.cc 2013-01-12 09:05:12.737640582 -0800
@@ -30,7 +30,7 @@
// Out of sync of 100ms would be pretty noticeable and we should keep any
// drift below that.
const int64 kOutOfSyncThresholdInMicroseconds = 100000;
- return std::abs(timestamp_1.InMicroseconds() - timestamp_2.InMicroseconds()) >
+ return std::labs(timestamp_1.InMicroseconds() - timestamp_2.InMicroseconds()) >
kOutOfSyncThresholdInMicroseconds;
}