mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 22:51:37 +00:00
Fix warnings.
This commit is contained in:
parent
754ab06b44
commit
a27aca541b
1 changed files with 2 additions and 2 deletions
|
@ -473,9 +473,9 @@ void CL_ConnectionlessPacket (void)
|
|||
|
||||
s = MSG_ReadString ();
|
||||
|
||||
while (*s && isspace(*s))
|
||||
while (*s && isspace((int)*s))
|
||||
s++;
|
||||
while (*s && isspace(s[strlen(s) - 1]))
|
||||
while (*s && isspace((int)s[strlen(s) - 1]))
|
||||
s[strlen(s) - 1] = 0;
|
||||
|
||||
if (!allowremotecmd && (!*localid->string || strcmp(localid->string, s))) {
|
||||
|
|
Loading…
Reference in a new issue