From: Jeremy Reed Date: Wed, 4 Jun 2008 22:32:53 +0000 (+0000) Subject: Remove trailing (extra) comma in enum. X-Git-Tag: v9.3.6b1~131^2~16 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=b09318463a313540df459650f199f2d3764ef7a2;p=thirdparty%2Fbind9.git 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. --- diff --git a/lib/isc/include/isc/socket.h b/lib/isc/include/isc/socket.h index 44587d52379..3a310fdc6e1 100644 --- a/lib/isc/include/isc/socket.h +++ b/lib/isc/include/isc/socket.h @@ -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; /*@{*/