From b71c668c577f7780362f7ea632895c11e3760d66 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 21 Jul 2007 15:08:09 +0000 Subject: style fix (stray space before ';') --- shell/ash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell/ash.c') diff --git a/shell/ash.c b/shell/ash.c index 32c4402..5f4d176 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) { -- cgit v1.1