Skip to content
Snippets Groups Projects
Commit 21bb18e8 authored by Bill Lorensen's avatar Bill Lorensen
Browse files

COMP: warning, isprint and isspace take int args.

parent dcd622a5
No related branches found
No related tags found
No related merge requests found
......@@ -2807,7 +2807,7 @@ static char** kwsysProcessParseVerbatimCommand(const char* command)
}
}
}
else if(isspace(*c))
else if(isspace((int) *c))
{
if(in_argument)
{
......
......@@ -7,4 +7,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2008)
SET(KWSYS_DATE_STAMP_MONTH 05)
# KWSys version date day component. Format is DD.
SET(KWSYS_DATE_STAMP_DAY 10)
SET(KWSYS_DATE_STAMP_DAY 12)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment