mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-31 01:11:15 +00:00
- Fix most GCC warnings in the backend/common code code.
* Most of them were just signedness issues. Hopefully I got everything right here. * 3rd party stuff deliberately not touched.
This commit is contained in:
parent
526db7f8b0
commit
0c13d4fe3a
13 changed files with 19 additions and 19 deletions
|
@ -209,7 +209,7 @@ void C_DoCommand (const char *cmd, int keynum)
|
|||
else
|
||||
{
|
||||
beg = cmd;
|
||||
for (end = cmd+1; *end > ' ' || *end < 0; ++end)
|
||||
for (end = cmd+1; *end > ' ' || (signed char)(*end) < 0; ++end)
|
||||
;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue