diff options
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 887091e..9a8401f 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -481,7 +481,7 @@ int cmake::CMakeCommand(std::vector<std::string>& args) // Echo string else if (args[1] == "echo" ) { - int cc; + unsigned int cc; for ( cc = 2; cc < args.size(); cc ++ ) { std::cout << args[cc] << " "; @@ -580,7 +580,7 @@ int cmake::CMakeCommand(std::vector<std::string>& args) // Remove file else if (args[1] == "comspec" && args.size() > 2) { - int cc; + unsigned int cc; std::string command = args[2]; for ( cc = 3; cc < args.size(); cc ++ ) { |