diff options
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 337f50a..8c8d251 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; } |