GDBusError enum: Remove trailing comma.
authorMurray Cumming <murrayc@murrayc.com>
Tue, 29 Apr 2014 11:21:41 +0000 (13:21 +0200)
committerMurray Cumming <murrayc@murrayc.com>
Thu, 22 May 2014 10:46:07 +0000 (12:46 +0200)
This is helpful to people using the g++ --pedantic option.

gio/gioenums.h

index a9d30fd..b9846b4 100644 (file)
@@ -1134,7 +1134,7 @@ typedef enum
   G_DBUS_ERROR_UNKNOWN_OBJECT,                   /* org.freedesktop.DBus.Error.UnknownObject */
   G_DBUS_ERROR_UNKNOWN_INTERFACE,                /* org.freedesktop.DBus.Error.UnknownInterface */
   G_DBUS_ERROR_UNKNOWN_PROPERTY,                 /* org.freedesktop.DBus.Error.UnknownProperty */
-  G_DBUS_ERROR_PROPERTY_READ_ONLY,               /* org.freedesktop.DBus.Error.PropertyReadOnly */
+  G_DBUS_ERROR_PROPERTY_READ_ONLY                /* org.freedesktop.DBus.Error.PropertyReadOnly */
 } GDBusError;
 /* Remember to update g_dbus_error_quark() in gdbuserror.c if you extend this enumeration */