diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-12-05 02:01:25 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-12-05 02:01:25 +0100 |
commit | e9ac32a067c6c22bdc8800bb8a233352ad1e497c (patch) | |
tree | d0a1f4887e46ec0c9628e58cdb1f2239845ad611 | |
parent | 359da5e3be3dfb15913c4e76d0b4a27b6400adc5 (diff) | |
download | busybox-w32-e9ac32a067c6c22bdc8800bb8a233352ad1e497c.tar.gz busybox-w32-e9ac32a067c6c22bdc8800bb8a233352ad1e497c.tar.bz2 busybox-w32-e9ac32a067c6c22bdc8800bb8a233352ad1e497c.zip |
ash: fix double comma in initializer
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index e7cf7975f..023294cbb 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -100,9 +100,9 @@ static const char *const optletters_optnames[] = { | |||
100 | "a" "allexport", | 100 | "a" "allexport", |
101 | "b" "notify", | 101 | "b" "notify", |
102 | "u" "nounset", | 102 | "u" "nounset", |
103 | "\0" "vi", | 103 | "\0" "vi" |
104 | #if ENABLE_ASH_BASH_COMPAT | 104 | #if ENABLE_ASH_BASH_COMPAT |
105 | "\0" "pipefail" | 105 | ,"\0" "pipefail" |
106 | #endif | 106 | #endif |
107 | #if DEBUG | 107 | #if DEBUG |
108 | ,"\0" "nolog" | 108 | ,"\0" "nolog" |