COMP: warning, isprint and isspace take int args.

This commit is contained in:
Bill Lorensen 2008-05-12 12:01:09 -04:00
parent 39bf28f5d2
commit 614b1ab358
1 changed files with 1 additions and 1 deletions

View File

@ -2807,7 +2807,7 @@ static char** kwsysProcessParseVerbatimCommand(const char* command)
} }
} }
} }
else if(isspace(*c)) else if(isspace((int) *c))
{ {
if(in_argument) if(in_argument)
{ {