From: Denys Vlasenko Date: Sat, 5 Dec 2009 01:01:25 +0000 (+0100) Subject: ash: fix double comma in initializer X-Git-Tag: 1_16_0~161 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e9ac32a067c6c22bdc8800bb8a233352ad1e497c;p=oweals%2Fbusybox.git ash: fix double comma in initializer Signed-off-by: Denys Vlasenko --- 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[] = { "a" "allexport", "b" "notify", "u" "nounset", - "\0" "vi", + "\0" "vi" #if ENABLE_ASH_BASH_COMPAT - "\0" "pipefail" + ,"\0" "pipefail" #endif #if DEBUG ,"\0" "nolog"