Fix warnings.

This commit is contained in:
Marcus Sundberg 2000-02-27 22:10:13 +00:00
parent 754ab06b44
commit a27aca541b

View file

@ -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))) {