diff options
Diffstat (limited to 'Source/cmFindProgramCommand.cxx')
-rw-r--r-- | Source/cmFindProgramCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFindProgramCommand.cxx b/Source/cmFindProgramCommand.cxx index 81678b3..66d3f17 100644 --- a/Source/cmFindProgramCommand.cxx +++ b/Source/cmFindProgramCommand.cxx @@ -45,7 +45,7 @@ bool cmFindProgramCommand::Invoke(std::vector<std::string>& args) cmSystemTools::GetPath(path); for(; i != args.end(); ++i) { - for(int k=0; k < path.size(); k++) + for(unsigned int k=0; k < path.size(); k++) { std::string tryPath = path[k]; tryPath += "/"; |