summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-09-29 18:09:16 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-09-29 18:09:16 (GMT)
commit595c15c84a8e463f2f8c816102d55c75cbdfb677 (patch)
tree6c324b26c5454754e5b43bacf4ebda9d34cf898c /Source/cmake.cxx
parent780a9bbda7142773dfa479a5fe3c231a173943fc (diff)
downloadCMake-595c15c84a8e463f2f8c816102d55c75cbdfb677.zip
CMake-595c15c84a8e463f2f8c816102d55c75cbdfb677.tar.gz
CMake-595c15c84a8e463f2f8c816102d55c75cbdfb677.tar.bz2
compiler warnings
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx4
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 ++ )
{