Remove trailing (extra) comma in enum.

Fixes "Unexpected" error with AIX cc (and probably other old compilers).
As reported on bind-users and confirmed by original poster.
This is for bugs ticket #18151.
This commit is contained in:
Jeremy Reed
2008-06-04 22:32:53 +00:00
parent 99a87dacc3
commit b09318463a

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: socket.h,v 1.72 2007/06/18 23:47:44 tbox Exp $ */
/* $Id: socket.h,v 1.73 2008/06/04 22:32:53 jreed Exp $ */
#ifndef ISC_SOCKET_H
#define ISC_SOCKET_H 1
@@ -146,7 +146,7 @@ typedef enum {
isc_sockettype_udp = 1,
isc_sockettype_tcp = 2,
isc_sockettype_unix = 3,
isc_sockettype_fdwatch = 4,
isc_sockettype_fdwatch = 4
} isc_sockettype_t;
/*@{*/