FIX: should compare to 0, not NULL

This commit is contained in:
Sebastien Barre 2002-03-29 16:25:39 -05:00
parent 31413a216b
commit dbe20d8d3b
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ bool cmCreateTestSourceList::InitialPass(std::vector<std::string> const& argsIn)
" }\n"
" strcpy(new_string, string);\n"
" char *p = new_string;\n"
" while (*p != NULL)\n"
" while (*p != 0)\n"
" {\n"
" *p = tolower(*p);\n"
" ++p;\n"