Cast isspace() parameter to int in order to avoid error under Irix

This commit is contained in:
Loring Holden 2000-04-28 21:14:52 +00:00
parent 45ca17ab62
commit d2bede4383

View file

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