diff options
author | Matt Kraai <kraai@debian.org> | 2000-07-14 06:47:33 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-07-14 06:47:33 +0000 |
commit | b870af09ae1892ab84dd089529675cc2df533e71 (patch) | |
tree | bd904209a7dedf191941bc9cfbb38df33492f664 /coreutils | |
parent | d6912c97deb344844163914eb4aa4640cc332580 (diff) |
Fix argument parsing.
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/wc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/wc.c b/coreutils/wc.c index bad03f791..3b0e589b6 100644 --- a/coreutils/wc.c +++ b/coreutils/wc.c @@ -154,7 +154,7 @@ int wc_main(int argc, char **argv) } wc_file(file, *argv); } else { - while (argc-- > 0 && *argv != '\0' && strlen(*argv)) { + while (argc-- > 0) { file = fopen(*argv, "r"); if (file == NULL) { perror(*argv); |