aboutsummaryrefslogtreecommitdiff
path: root/coreutils/sum.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-01-15 13:58:01 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-01-15 13:58:01 +0100
commit6830ade6aa91dad5afe6abf9d1e4f696f5641bf1 (patch)
tree0b7de8e0cbaa864f742901814f734549270e5ff9 /coreutils/sum.c
parent30a8652fbf16884490cee4a624f039a9ab587269 (diff)
downloadbusybox-w32-6830ade6aa91dad5afe6abf9d1e4f696f5641bf1.tar.gz
busybox-w32-6830ade6aa91dad5afe6abf9d1e4f696f5641bf1.tar.bz2
busybox-w32-6830ade6aa91dad5afe6abf9d1e4f696f5641bf1.zip
whitespace fixes. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/sum.c')
-rw-r--r--coreutils/sum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/sum.c b/coreutils/sum.c
index 95110a6da..75f6ef60a 100644
--- a/coreutils/sum.c
+++ b/coreutils/sum.c
@@ -94,8 +94,8 @@ int sum_main(int argc UNUSED_PARAM, char **argv)
94 n = sum_file("-", type); 94 n = sum_file("-", type);
95 } else { 95 } else {
96 /* Need to print the name if either 96 /* Need to print the name if either
97 - more than one file given 97 * - more than one file given
98 - doing sysv */ 98 * - doing sysv */
99 type += (argv[1] || type == SUM_SYSV); 99 type += (argv[1] || type == SUM_SYSV);
100 n = 1; 100 n = 1;
101 do { 101 do {