diff options
-rw-r--r-- | Source/ccommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ccommand.cxx b/Source/ccommand.cxx index fc67aad..ff7ae95 100644 --- a/Source/ccommand.cxx +++ b/Source/ccommand.cxx @@ -49,7 +49,7 @@ int main(int ac, char** av) } if ( args[1] == "remove" && args.size() > 2 ) { - for ( int cc = 2; cc < args.size(); cc ++ ) + for ( std::string::size_type cc = 2; cc < args.size(); cc ++ ) { cmSystemTools::RemoveFile(args[cc].c_str()); } |