aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 1cd205068..fe8c1bed2 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -12230,7 +12230,9 @@ helpcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12230 unsigned col; 12230 unsigned col;
12231 unsigned i; 12231 unsigned i;
12232 12232
12233 out1fmt("\nBuilt-in commands:\n-------------------\n"); 12233 out1fmt("\n"
12234 "Built-in commands:\n"
12235 "------------------\n");
12234 for (col = 0, i = 0; i < ARRAY_SIZE(builtintab); i++) { 12236 for (col = 0, i = 0; i < ARRAY_SIZE(builtintab); i++) {
12235 col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '), 12237 col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '),
12236 builtintab[i].name + 1); 12238 builtintab[i].name + 1);