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 | 3940a2fec8433ed3b13d93985c8c718ba8f3b3fc (patch) | |
tree | 78e59aa1b49a9e43af79d55f4c5e796d645ecca9 | |
parent | 125432c73abedff1309c87cb50507fccb787cf43 (diff) | |
download | samba-3940a2fec8433ed3b13d93985c8c718ba8f3b3fc.tar.gz samba-3940a2fec8433ed3b13d93985c8c718ba8f3b3fc.tar.bz2 samba-3940a2fec8433ed3b13d93985c8c718ba8f3b3fc.zip |
The last element of the definitions of enums can't have a trailing
comma. Only initialisers can have this in ANSI C.
(This used to be commit b6119f583552425c2be30662e9325270a5dbf096)
-rw-r--r-- | source3/nsswitch/wbinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/wbinfo.c b/source3/nsswitch/wbinfo.c index e41f2c6468..f8510497b0 100644 --- a/source3/nsswitch/wbinfo.c +++ b/source3/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) |