From c6f188def8c5496dbd65c9be6ca3050286db7227 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 26 Oct 2006 00:37:00 +0000 Subject: silly size savings and capitalization fixes --- shell/msh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell/msh.c') 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; } } -- cgit v1.2.3