second batch : remove ',' at end of enums as they could confuse older gcc, foreign...
authorStéphane Loeuillet <gstreamer@leroutier.net>
Fri, 21 May 2004 23:28:57 +0000 (23:28 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 2 Jan 2011 14:30:04 +0000 (14:30 +0000)
Original commit message from CVS:
second batch :
remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc
(in gst-plugins/ext/ this time)

ext/jack/gstjack.c
ext/jack/gstjack.h

index 643896a..8b1296e 100644 (file)
@@ -85,7 +85,7 @@ static void gst_jack_loop (GstElement * element);
 enum
 {
   ARG_0,
-  ARG_PORT_NAME_PREFIX,
+  ARG_PORT_NAME_PREFIX
 };
 
 
index 87d7d61..e0b255a 100644 (file)
@@ -67,7 +67,7 @@ typedef GstJackClass GstJackSrcClass;
 enum {
     GST_JACK_OPEN = GST_BIN_FLAG_LAST,
     GST_JACK_ACTIVE,
-    GST_JACK_FLAG_LAST = GST_BIN_FLAG_LAST + 3,
+    GST_JACK_FLAG_LAST = GST_BIN_FLAG_LAST + 3
 };