Ken Martin 24 роки тому
батько
коміт
24ec7f5c3c
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      Source/cmMakefile.cxx

+ 1 - 1
Source/cmMakefile.cxx

@@ -418,7 +418,7 @@ struct FindSrcByName : std::binary_function<cmSourceFile, cmSourceFile, bool>
   public:
     bool operator () (const cmSourceFile &f, const cmSourceFile &test) const
     {
-      return !stricmp(f.GetSourceName().c_str(),test.GetSourceName().c_str());
+      return !strcmp(f.GetSourceName().c_str(),test.GetSourceName().c_str());
     }
 };