From: Alexander Larsson Date: Mon, 25 May 2009 10:47:12 +0000 (+0200) Subject: Don't end enum with comma (#583663) X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=3c0feca7f109c68e8c2a278875e576b18966d299;p=dana%2Fcg-glib.git Don't end enum with comma (#583663) This is valid C but breaks C++, so don't put it in headers. --- diff --git a/gio/gioenums.h b/gio/gioenums.h index 6b6ef402..a03029dc 100644 --- a/gio/gioenums.h +++ b/gio/gioenums.h @@ -531,7 +531,7 @@ typedef enum G_SOCKET_TYPE_INVALID, G_SOCKET_TYPE_STREAM, G_SOCKET_TYPE_DATAGRAM, - G_SOCKET_TYPE_SEQPACKET, + G_SOCKET_TYPE_SEQPACKET } GSocketType; /**