[tools/asm/q3asm.c] Remove 'abs(unsigned)', which is unnecessary and potentially wrong

This commit is contained in:
Thomas Köppe 2016-07-25 18:30:15 +01:00
parent f0086e8c2a
commit 9a5add2b60

View file

@ -477,7 +477,7 @@ static unsigned int HashString (const char *key)
acc = (acc << 2) | (acc >> 30); acc = (acc << 2) | (acc >> 30);
acc &= 0xffffffffU; acc &= 0xffffffffU;
} }
return abs(acc); return acc;
} }
@ -1644,4 +1644,3 @@ Motivation: not wanting to scrollback for pages to find asm error.
return errorCount; return errorCount;
} }