summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko2009-12-05 02:01:25 +0100
committerDenys Vlasenko2009-12-05 02:01:25 +0100
commite9ac32a067c6c22bdc8800bb8a233352ad1e497c (patch)
treed0a1f4887e46ec0c9628e58cdb1f2239845ad611
parent359da5e3be3dfb15913c4e76d0b4a27b6400adc5 (diff)
downloadbusybox-e9ac32a067c6c22bdc8800bb8a233352ad1e497c.zip
busybox-e9ac32a067c6c22bdc8800bb8a233352ad1e497c.tar.gz
ash: fix double comma in initializer
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index e7cf797..023294c 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -100,9 +100,9 @@ static const char *const optletters_optnames[] = {
"a" "allexport",
"b" "notify",
"u" "nounset",
- "\0" "vi",
+ "\0" "vi"
#if ENABLE_ASH_BASH_COMPAT
- "\0" "pipefail"
+ ,"\0" "pipefail"
#endif
#if DEBUG
,"\0" "nolog"