From 2ed1ca11bc38b8de92c023ecc01d93a3b942071a Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Tue, 7 Feb 2006 11:43:17 -0500 Subject: [PATCH] COMP: Fix compile problem on windows and mac --- Source/kwsys/SystemTools.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 2c469ed79..3bc092eda 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -2442,8 +2442,8 @@ std::string SystemTools::RelativePath(const char* local, const char* remote) && // for windows and apple do a case insensitive string compare #if defined(_WIN32) || defined(__APPLE__) - cmSystemTools::Strucmp(localSplit[sameCount].c_str(), - remoteSplit[sameCount].c_str()) == 0 + SystemTools::Strucmp(localSplit[sameCount].c_str(), + remoteSplit[sameCount].c_str()) == 0 #else localSplit[sameCount] == remoteSplit[sameCount] #endif