Browse Source

ERR: Removed use of NULL.

Brad King 23 years ago
parent
commit
06b640fe48
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmGlobalCodeWarriorGenerator.cxx

+ 1 - 1
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");
     }
 }