third batch : remove ',' at end of enums as they could confuse older gcc, foreign...
authorStéphane Loeuillet <gstreamer@leroutier.net>
Fri, 21 May 2004 23:38:49 +0000 (23:38 +0000)
committerStéphane Loeuillet <gstreamer@leroutier.net>
Fri, 21 May 2004 23:38:49 +0000 (23:38 +0000)
Original commit message from CVS:
third batch :
remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc
(in gst-plugins/gst-libs/ this time)

gst-libs/gst/audio/gstaudiofilter.c
gst-libs/gst/audio/gstaudiofiltertemplate.c

index 179c1d3..7028f42 100644 (file)
@@ -38,8 +38,8 @@ enum
 enum
 {
   ARG_0,
-  ARG_METHOD,
-  /* FILL ME */
+  ARG_METHOD
+      /* FILL ME */
 };
 
 static void gst_audiofilter_base_init (gpointer g_class);
index f641a6f..f185203 100644 (file)
@@ -69,8 +69,8 @@ enum
 
 enum
 {
-  ARG_0,
-  /* FILL ME */
+  ARG_0
+      /* FILL ME */
 };
 
 static void gst_audiofilter_template_base_init (gpointer g_class);