mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-24 21:01:17 +00:00
Cast isspace() parameter to int in order to avoid error under Irix
This commit is contained in:
parent
45ca17ab62
commit
d2bede4383
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ Cbuf_Execute_Sets (void)
|
|||
extract_line (line);
|
||||
// execute the command line
|
||||
if (strncmp(line,"set",3)==0
|
||||
&& isspace(line[3]))
|
||||
&& isspace((int) line[3]))
|
||||
Con_DPrintf("+%s\n",line),
|
||||
Cmd_ExecuteString (line, src_command);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue