[glib] Don't end enum with comma (#583663)



commit 3c0feca7f109c68e8c2a278875e576b18966d299
Author: Alexander Larsson <alexl redhat com>
Date:   Mon May 25 12:47:12 2009 +0200

    Don't end enum with comma (#583663)
    
    This is valid C but breaks C++, so don't put it in headers.
---
 gio/gioenums.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gio/gioenums.h b/gio/gioenums.h
index 6b6ef40..a03029d 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;
 
 /**



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]