summaryrefslogtreecommitdiff
path: root/src/new32v2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/new32v2.c')
-rw-r--r--src/new32v2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/new32v2.c b/src/new32v2.c
index a755d6d..1fd4c6f 100644
--- a/src/new32v2.c
+++ b/src/new32v2.c
@@ -9,7 +9,7 @@ static const unsigned int divtab[244] = {
[243] = 0x010d + 1l
};
-#define FASTDIV(n, d) (((n) * (divtab[d])) >> 16)
+#define FASTDIV(n, d) (((n) * divtab[d]) >> 16)
int new32v2(int i, int x, int y)
{