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-w32-b71c668c577f7780362f7ea632895c11e3760d66.tar.gz busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.tar.bz2 busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.zip |
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) | |||
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) { |