Skip to content
Snippets Groups Projects
Commit fd357113 authored by David Cole's avatar David Cole
Browse files

Fix warnings in CMake source code. Suppress warnings in Lexer and Parser files...

Fix warnings in CMake source code. Suppress warnings in Lexer and Parser files that are 'too hard' to fix.
parent 62db264e
No related branches found
No related tags found
No related merge requests found
......@@ -18,4 +18,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2009)
SET(KWSYS_DATE_STAMP_MONTH 09)
# KWSys version date day component. Format is DD.
SET(KWSYS_DATE_STAMP_DAY 28)
SET(KWSYS_DATE_STAMP_DAY 30)
......@@ -266,7 +266,7 @@ int runChild2(kwsysProcess* kp,
}
else
{
fwrite(data, 1, length, stdout);
fwrite(data, 1, (size_t) length, stdout);
fflush(stdout);
}
}
......
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