Don't end enum with comma (#583663)
authorAlexander Larsson <alexl@redhat.com>
Mon, 25 May 2009 10:47:12 +0000 (12:47 +0200)
committerAlexander Larsson <alexl@redhat.com>
Mon, 25 May 2009 10:47:12 +0000 (12:47 +0200)
This is valid C but breaks C++, so don't put it in headers.

gio/gioenums.h

index 6b6ef40..a03029d 100644 (file)
@@ -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;
 
 /**