diff options
author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-10-29 11:46:52 +0200 |
---|---|---|
committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-10-29 11:46:52 +0200 |
commit | fb132e47370378474c68ad22c1c0cb2ccee178de (patch) | |
tree | 4f78d0fdd1c2fa2341c7d9bb17f9d98d099a238c /coreutils/wc.c | |
parent | 66cb7bed33da605674c3d24734466b8e8a60e337 (diff) |
whitespace cleanup
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'coreutils/wc.c')
-rw-r--r-- | coreutils/wc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/wc.c b/coreutils/wc.c index ecadae59b..fe3f274f8 100644 --- a/coreutils/wc.c +++ b/coreutils/wc.c @@ -153,7 +153,7 @@ int wc_main(int argc UNUSED_PARAM, char **argv) bb_simple_perror_msg(arg); status = EXIT_FAILURE; } - goto DO_EOF; /* Treat an EOF as '\r'. */ + goto DO_EOF; /* Treat an EOF as '\r'. */ } /* Cater for -c and -m */ @@ -179,7 +179,7 @@ int wc_main(int argc UNUSED_PARAM, char **argv) */ if (c == '\t') { linepos = (linepos | 7) + 1; - } else { /* '\n', '\r', '\f', or '\v' */ + } else { /* '\n', '\r', '\f', or '\v' */ DO_EOF: if (linepos > counts[WC_LENGTH]) { counts[WC_LENGTH] = linepos; @@ -230,7 +230,7 @@ int wc_main(int argc UNUSED_PARAM, char **argv) * effect of trashing the totals array after outputting it, but that's * irrelavent since we no longer need it. */ if (num_files > 1) { - num_files = 0; /* Make sure we don't get here again. */ + num_files = 0; /* Make sure we don't get here again. */ arg = "total"; pcounts = totals; --argv; |