summaryrefslogtreecommitdiff
path: root/src/new32v2.c
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2018-09-25 18:43:36 +0200
committerPaweł Redman <pawel.redman@gmail.com>2018-09-25 18:43:36 +0200
commit5fc99de1f5542554ed02edb0b5f6f43ceea3c09d (patch)
treebe81f90f96db4c5a70022f3c6b6ca4460665f6f4 /src/new32v2.c
parent67b80a01a681870031a81960a2ae310c367827a8 (diff)
Improve code readability.
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)
{