From 9a5add2b604e9d6e5120d1c748e311f895e71908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20K=C3=B6ppe?= Date: Mon, 25 Jul 2016 18:30:15 +0100 Subject: [PATCH] [tools/asm/q3asm.c] Remove 'abs(unsigned)', which is unnecessary and potentially wrong --- code/tools/asm/q3asm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/tools/asm/q3asm.c b/code/tools/asm/q3asm.c index 191a9db6..54c6ab1e 100644 --- a/code/tools/asm/q3asm.c +++ b/code/tools/asm/q3asm.c @@ -477,7 +477,7 @@ static unsigned int HashString (const char *key) acc = (acc << 2) | (acc >> 30); acc &= 0xffffffffU; } - return abs(acc); + return acc; } @@ -1644,4 +1644,3 @@ Motivation: not wanting to scrollback for pages to find asm error. return errorCount; } -