[FFmpeg-cvslog] tests/utils: Remove unneeded L suffix

Michael Niedermayer git at videolan.org
Sun Feb 1 22:47:37 CET 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Feb  1 20:45:00 2015 +0100| [36adfa32748f69bf09f49e8a0f424a79c19003fb] | committer: Michael Niedermayer

tests/utils: Remove unneeded L suffix

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=36adfa32748f69bf09f49e8a0f424a79c19003fb
---

 tests/utils.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/utils.c b/tests/utils.c
index dde6e03..f244104 100644
--- a/tests/utils.c
+++ b/tests/utils.c
@@ -25,7 +25,7 @@
 
 #define SCALEBITS 8
 #define ONE_HALF  (1 << (SCALEBITS - 1))
-#define FIX(x)    ((int) ((x) * (1L << SCALEBITS) + 0.5))
+#define FIX(x)    ((int) ((x) * (1 << SCALEBITS) + 0.5))
 
 #define err_if(expr) do {                                              \
     if (expr) {                                                        \



More information about the ffmpeg-cvslog mailing list