diff options
Diffstat (limited to 'Source/cmSetCommand.cxx')
-rw-r--r-- | Source/cmSetCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSetCommand.cxx b/Source/cmSetCommand.cxx index 8ab33e4..3708e28 100644 --- a/Source/cmSetCommand.cxx +++ b/Source/cmSetCommand.cxx @@ -49,7 +49,7 @@ bool cmSetCommand::InitialPass(std::vector<std::string> const& args) if(args[1] != "CACHE" && args[2] != "CACHE") { value = args[1]; - for(int i =2; i < args.size(); ++i) + for(unsigned int i =2; i < args.size(); ++i) { value += ";"; value += args[i]; |