mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
[tools/asm/q3asm.c] Remove 'abs(unsigned)', which is unnecessary and potentially wrong
This commit is contained in:
parent
f0086e8c2a
commit
9a5add2b60
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue