diff options
Diffstat (limited to 'Source/cmTryCompileCommand.cxx')
-rw-r--r-- | Source/cmTryCompileCommand.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmTryCompileCommand.cxx b/Source/cmTryCompileCommand.cxx index 107e0c9..d786717 100644 --- a/Source/cmTryCompileCommand.cxx +++ b/Source/cmTryCompileCommand.cxx @@ -270,12 +270,12 @@ void cmTryCompileCommand::CleanupFiles(const char* binDir) size_t fileNum; for (fileNum = 0; fileNum < dir.GetNumberOfFiles(); ++fileNum) { - if (strcmp(dir.GetFile(fileNum),".") && - strcmp(dir.GetFile(fileNum),"..")) + if (strcmp(dir.GetFile(static_cast<unsigned long>(fileNum)),".") && + strcmp(dir.GetFile(static_cast<unsigned long>(fileNum)),"..")) { std::string fullPath = binDir; fullPath += "/"; - fullPath += dir.GetFile(fileNum); + fullPath += dir.GetFile(static_cast<unsigned long>(fileNum)); if(cmSystemTools::FileIsDirectory(fullPath.c_str())) { cmTryCompileCommand::CleanupFiles(fullPath.c_str()); |