diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 32c440274..5f4d1767e 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -11268,7 +11268,7 @@ helpcmd(int argc, char **argv) | |||
11268 | int col, i; | 11268 | int col, i; |
11269 | 11269 | ||
11270 | out1fmt("\nBuilt-in commands:\n-------------------\n"); | 11270 | out1fmt("\nBuilt-in commands:\n-------------------\n"); |
11271 | for (col = 0, i = 0; i < ARRAY_SIZE(builtintab) ; i++) { | 11271 | for (col = 0, i = 0; i < ARRAY_SIZE(builtintab); i++) { |
11272 | col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '), | 11272 | col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '), |
11273 | builtintab[i].name + 1); | 11273 | builtintab[i].name + 1); |
11274 | if (col > 60) { | 11274 | if (col > 60) { |