summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2003-06-04 12:40:09 (GMT)
committerKen Martin <ken.martin@kitware.com>2003-06-04 12:40:09 (GMT)
commit40123f1fceba33172eb9ccd5a6c863df98b022cf (patch)
tree8fd2b1a5ba79b7b334fcefb5db911b2ec60853bf
parent0b3b21fa63ed137a3fa534c379b2995583c40e24 (diff)
downloadCMake-40123f1fceba33172eb9ccd5a6c863df98b022cf.zip
CMake-40123f1fceba33172eb9ccd5a6c863df98b022cf.tar.gz
CMake-40123f1fceba33172eb9ccd5a6c863df98b022cf.tar.bz2
compielr errors on como
-rw-r--r--Source/cmMakefile.cxx4
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;
}