From 5f9bd4fb987049ecea077c0a1039f0eee31c118c Mon Sep 17 00:00:00 2001 From: Thom Johansen Date: Thu, 23 Mar 2006 19:26:21 +0000 Subject: [PATCH] Make EQ work on 64 bit sims again. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9214 a1c6a512-1295-4272-9138-f99709370657 --- apps/eq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/eq.c b/apps/eq.c index 6e3e1e2126..8fb065aa09 100644 --- a/apps/eq.c +++ b/apps/eq.c @@ -102,7 +102,7 @@ static const unsigned long atan_table[] = { * representing -1 and 1 respectively. */ long fsincos(unsigned long phase, long *cos) { - long x, x1, y, y1; + int32_t x, x1, y, y1; unsigned long z, z1; int i;