int -> size_t

This commit is contained in:
Andreas Fabri 2010-11-27 09:50:32 +00:00
parent 3bc9d0a2a6
commit da076665d2
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ int main( int argc, char **argv) {
int n = 0; // number of filenames
char *filename[2];
bool help = false;
int i = 1;
std::size_t i = 1;
for ( ; i < argc; i++) { // check commandline options
if ( strcmp( "-v", argv[i]) == 0)
verbose = true;