From 40123f1fceba33172eb9ccd5a6c863df98b022cf Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Wed, 4 Jun 2003 08:40:09 -0400 Subject: [PATCH] compielr errors on como --- Source/cmMakefile.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }