From 5164792572e29b2789eac5b3716d68d64d76f49c Mon Sep 17 00:00:00 2001 From: vda Date: Thu, 26 Oct 2006 00:37:00 +0000 Subject: silly size savings and capitalization fixes git-svn-id: svn://busybox.net/trunk/busybox@16438 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/ls.c | 2 +- coreutils/sum.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'coreutils') diff --git a/coreutils/ls.c b/coreutils/ls.c index f34e83ebe..40e922846 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -485,7 +485,7 @@ static void showdirs(struct dnode **dn, int ndirs, int first) for (i = 0; i < ndirs; i++) { if (all_fmt & (DISP_DIRNAME | DISP_RECURSIVE)) { if (!first) - printf("\n"); + puts(""); first = 0; printf("%s:\n", dn[i]->fullname); } 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) if (print_name > 1) puts(file); else - printf("\n"); + puts(""); out: return ret; } -- cgit v1.2.3-55-g6feb