OSDN Git Service

ash: fix double comma in initializer
authorDenys Vlasenko <vda.linux@googlemail.com>
Sat, 5 Dec 2009 01:01:25 +0000 (02:01 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sat, 5 Dec 2009 01:01:25 +0000 (02:01 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c

index e7cf797..023294c 100644 (file)
@@ -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"