message: Remove comma at end of enum list
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Mon, 23 Apr 2012 07:18:48 +0000 (09:18 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Mon, 23 Apr 2012 07:21:28 +0000 (09:21 +0200)
This comma confuses some compilers.

gst/gstmessage.h

index aadb646..b7046e1 100644 (file)
@@ -264,7 +264,7 @@ typedef enum {
   GST_PROGRESS_TYPE_CONTINUE = 1,
   GST_PROGRESS_TYPE_COMPLETE = 2,
   GST_PROGRESS_TYPE_CANCELED = 3,
-  GST_PROGRESS_TYPE_ERROR    = 4,
+  GST_PROGRESS_TYPE_ERROR    = 4
 } GstProgressType;
 
 /**