From 36adfa32748f69bf09f49e8a0f424a79c19003fb Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Sun, 1 Feb 2015 20:45:00 +0100
Subject: [PATCH] tests/utils: Remove unneeded L suffix

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
---
 tests/utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/utils.c b/tests/utils.c
index dde6e03c414..f2441046c37 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) {                                                        \
-- 
GitLab