- 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:
Mitchell Richters 2023-10-04 19:20:57 +11:00 committed by Christoph Oelckers
parent 526db7f8b0
commit 0c13d4fe3a
13 changed files with 19 additions and 19 deletions

View file

@ -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)
;
}