diff options
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 210007b..b6d4c4f 100644 --- a/Source/cmMakefile.cxx +++ b/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()); } }; |