From 595c15c84a8e463f2f8c816102d55c75cbdfb677 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Sun, 29 Sep 2002 14:09:16 -0400 Subject: [PATCH] compiler warnings --- Source/cmake.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 887091ed7..9a8401fd6 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -481,7 +481,7 @@ int cmake::CMakeCommand(std::vector& 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& 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 ++ ) {