diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 00:37:00 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 00:37:00 +0000 |
commit | c6f188def8c5496dbd65c9be6ca3050286db7227 (patch) | |
tree | d8e1e56c728628c15f66cb88a6e54f368c806939 /coreutils/ls.c | |
parent | e63a0dee9e559110bcaec494ae5e7fc78c4141c7 (diff) | |
download | busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.gz busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.bz2 busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.zip |
silly size savings and capitalization fixes
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
485 | for (i = 0; i < ndirs; i++) { | 485 | for (i = 0; i < ndirs; i++) { |
486 | if (all_fmt & (DISP_DIRNAME | DISP_RECURSIVE)) { | 486 | if (all_fmt & (DISP_DIRNAME | DISP_RECURSIVE)) { |
487 | if (!first) | 487 | if (!first) |
488 | printf("\n"); | 488 | puts(""); |
489 | first = 0; | 489 | first = 0; |
490 | printf("%s:\n", dn[i]->fullname); | 490 | printf("%s:\n", dn[i]->fullname); |
491 | } | 491 | } |