summaryrefslogtreecommitdiff
path: root/gio
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2009-05-25 12:47:12 +0200
committerAlexander Larsson <alexl@redhat.com>2009-05-25 12:47:12 +0200
commit3c0feca7f109c68e8c2a278875e576b18966d299 (patch)
tree5e0e28d711b68ad875f49cf691e6fda5297d959b /gio
parentc93c98732aefb8472c94e75fea36f4924c7c746c (diff)
downloadglib-3c0feca7f109c68e8c2a278875e576b18966d299.tar.gz
glib-3c0feca7f109c68e8c2a278875e576b18966d299.tar.bz2
glib-3c0feca7f109c68e8c2a278875e576b18966d299.zip
Don't end enum with comma (#583663)
This is valid C but breaks C++, so don't put it in headers.
Diffstat (limited to 'gio')
-rw-r--r--gio/gioenums.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gioenums.h b/gio/gioenums.h
index 6b6ef4027..a03029dcb 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;
/**