diff options
Diffstat (limited to 'shell/msh.c')
-rw-r--r-- | shell/msh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/msh.c b/shell/msh.c index cb29471..95b4244 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; } } |