diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 337f50a5e..8c8d251de 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -956,7 +956,7 @@ void cmMakefile::AddUtilityCommand(const char* utilityName, } else { - cmCustomCommand cc(command, arguments, dep, NULL); + cmCustomCommand cc(command, arguments, dep, (const char *)0); target.GetPostBuildCommands().push_back(cc); } m_Targets.insert(cmTargets::value_type(utilityName,target)); @@ -986,7 +986,7 @@ cmSourceFile *cmMakefile::GetSourceFileWithOutput(const char *cname) } // otherwise return NULL - return NULL; + return 0; }