Skip to content

Commit 36adfa3

Browse files
committed
tests/utils: Remove unneeded L suffix
Signed-off-by: Michael Niedermayer <[email protected]>
1 parent 4531e2c commit 36adfa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/utils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#define SCALEBITS 8
2727
#define ONE_HALF (1 << (SCALEBITS - 1))
28-
#define FIX(x) ((int) ((x) * (1L << SCALEBITS) + 0.5))
28+
#define FIX(x) ((int) ((x) * (1 << SCALEBITS) + 0.5))
2929

3030
#define err_if(expr) do { \
3131
if (expr) { \

0 commit comments

Comments
 (0)