diff options
author | Michael Niedermayer | 2015-02-01 20:45:00 +0100 |
---|---|---|
committer | Michael Niedermayer | 2015-02-01 22:38:11 +0100 |
commit | 36adfa32748f69bf09f49e8a0f424a79c19003fb (patch) | |
tree | 8b710bb04f2edcbafc49f7b601bb3114094ea9ff /tests/utils.c | |
parent | 4531e2c489d279bfc90d54ca26ed898c5b265a7f (diff) |
tests/utils: Remove unneeded L suffix
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/utils.c')
-rw-r--r-- | tests/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.c b/tests/utils.c index dde6e03c41..f2441046c3 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) { \ |