Skip to content

Commit

Permalink
tests/utils: Remove unneeded L suffix
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Niedermayer <[email protected]>
  • Loading branch information
michaelni committed Feb 1, 2015
1 parent 4531e2c commit 36adfa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) { \
Expand Down

0 comments on commit 36adfa3

Please sign in to comment.