diff options
author | Tim Potter <tpot@samba.org> | 2002-06-02 23:23:16 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-06-02 23:23:16 +0000 |
commit | b6119f583552425c2be30662e9325270a5dbf096 (patch) | |
tree | 0c32c0c592420d13a0ddaa3d0aea9aabcf40247a | |
parent | fd938eca210602790c4d0e442f3aa9aa22b5fdf2 (diff) | |
download | samba-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.c | 2 |
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) |