summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-06-02 23:23:16 +0000
committerTim Potter <tpot@samba.org>2002-06-02 23:23:16 +0000
commitb6119f583552425c2be30662e9325270a5dbf096 (patch)
tree0c32c0c592420d13a0ddaa3d0aea9aabcf40247a
parentfd938eca210602790c4d0e442f3aa9aa22b5fdf2 (diff)
downloadsamba-b6119f583552425c2be30662e9325270a5dbf096.tar.gz
samba-b6119f583552425c2be30662e9325270a5dbf096.tar.xz
samba-b6119f583552425c2be30662e9325270a5dbf096.zip
The last element of the definitions of enums can't have a trailing
comma. Only initialisers can have this in ANSI C.
-rw-r--r--source/nsswitch/wbinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/nsswitch/wbinfo.c b/source/nsswitch/wbinfo.c
index e41f2c6468e..f8510497b07 100644
--- a/source/nsswitch/wbinfo.c
+++ b/source/nsswitch/wbinfo.c
@@ -649,7 +649,7 @@ static void usage(void)
enum {
OPT_SET_AUTH_USER = 1000,
- OPT_SEQUENCE,
+ OPT_SEQUENCE
};
int main(int argc, char **argv)