aboutsummaryrefslogtreecommitdiff
path: root/shell/msh.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 /shell/msh.c
parente63a0dee9e559110bcaec494ae5e7fc78c4141c7 (diff)
downloadbusybox-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.gz
silly size savings and capitalization fixes
Diffstat (limited to 'shell/msh.c')
-rw-r--r--shell/msh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/msh.c b/shell/msh.c
index cb2947137..95b4244d7 100644
--- a/shell/msh.c
+++ b/shell/msh.c
@@ -3250,7 +3250,7 @@ static int dohelp(struct op *t)
continue;
col += printf("%s%s", ((col == 0) ? "\t" : " "), x->name);
if (col > 60) {
- printf("\n");
+ puts("");
col = 0;
}
}
@@ -3267,7 +3267,7 @@ static int dohelp(struct op *t)
col += printf("%s%s", ((col == 0) ? "\t" : " "), applet->name);
if (col > 60) {
- printf("\n");
+ puts("");
col = 0;
}
}