summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-11-08 23:05:22 (GMT)
committerBrad King <brad.king@kitware.com>2002-11-08 23:05:22 (GMT)
commit06b640fe48acd739fde767f75fb19b5353c69e4b (patch)
treee9a018f8fe5f4b2b6a0a1614d7dd893b09fb7eda /Source
parenta747e47cb00e8be912b8d4c3e98905bd89ed0a26 (diff)
downloadCMake-06b640fe48acd739fde767f75fb19b5353c69e4b.zip
CMake-06b640fe48acd739fde767f75fb19b5353c69e4b.tar.gz
CMake-06b640fe48acd739fde767f75fb19b5353c69e4b.tar.bz2
ERR: Removed use of NULL.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalCodeWarriorGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalCodeWarriorGenerator.cxx b/Source/cmGlobalCodeWarriorGenerator.cxx
index 8f8d0a0..828199d 100644
--- a/Source/cmGlobalCodeWarriorGenerator.cxx
+++ b/Source/cmGlobalCodeWarriorGenerator.cxx
@@ -35,7 +35,7 @@ void cmGlobalCodeWarriorGenerator::EnableLanguage(const char*,
std::string fpath =
mf->GetDefinition("CMAKE_ROOT");
fpath += "/Templates/CMakeDotNetSystemConfig.cmake";
- mf->ReadListFile(NULL,fpath.c_str());
+ mf->ReadListFile(0,fpath.c_str());
this->SetLanguageEnabled("CXX");
}
}