diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-21 15:08:09 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-21 15:08:09 +0000 |
commit | b71c668c577f7780362f7ea632895c11e3760d66 (patch) | |
tree | 860ccf38cce8c5347ae2b714a22b82a1d7dba323 /shell | |
parent | 82bd9ee64546c4f6f60303f6356377ce6b695a06 (diff) | |
download | busybox-b71c668c577f7780362f7ea632895c11e3760d66.tar.gz |
style fix (stray space before ';')
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) int col, i; out1fmt("\nBuilt-in commands:\n-------------------\n"); - for (col = 0, i = 0; i < ARRAY_SIZE(builtintab) ; i++) { + for (col = 0, i = 0; i < ARRAY_SIZE(builtintab); i++) { col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '), builtintab[i].name + 1); if (col > 60) { |