mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +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 = (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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue