summaryrefslogtreecommitdiff
path: root/coreutils/sum.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-26 00:37:00 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-26 00:37:00 +0000
commitc6f188def8c5496dbd65c9be6ca3050286db7227 (patch)
treed8e1e56c728628c15f66cb88a6e54f368c806939 /coreutils/sum.c
parente63a0dee9e559110bcaec494ae5e7fc78c4141c7 (diff)
downloadbusybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.gz
busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.bz2
busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.zip
silly size savings and capitalization fixes
Diffstat (limited to 'coreutils/sum.c')
-rw-r--r--coreutils/sum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sum.c b/coreutils/sum.c
index 61ca582a1..d663e34dd 100644
--- a/coreutils/sum.c
+++ b/coreutils/sum.c
@@ -65,7 +65,7 @@ static int bsd_sum_file(const char *file, int print_name)
65 if (print_name > 1) 65 if (print_name > 1)
66 puts(file); 66 puts(file);
67 else 67 else
68 printf("\n"); 68 puts("");
69out: 69out:
70 return ret; 70 return ret;
71} 71}