Don't end enum with comma (#583663)

This is valid C but breaks C++, so don't put it in headers.
This commit is contained in:
Alexander Larsson
2009-05-25 12:47:12 +02:00
parent c93c98732a
commit 3c0feca7f1

View 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;
/**