dos2unix: fix the case w/o parameters

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2010-07-17 22:43:42 +02:00
parent 6adf2aad38
commit d1516c4d62
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ int dos2unix_main(int argc UNUSED_PARAM, char **argv)
do {
/* might be convert(NULL) if there is no filename given */
convert(*argv, conv_type);
} while (*++argv);
} while (*argv && *++argv);
return 0;
}