From c9cb9718922fbfea5bdbf6933235eefcca0152d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Loeuillet?= Date: Fri, 21 May 2004 23:28:57 +0000 Subject: second batch : remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc (in ... 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 | 2 +- ext/jack/gstjack.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/jack') diff --git a/ext/jack/gstjack.c b/ext/jack/gstjack.c index 643896a8..8b1296ea 100644 --- a/ext/jack/gstjack.c +++ b/ext/jack/gstjack.c @@ -85,7 +85,7 @@ static void gst_jack_loop (GstElement * element); enum { ARG_0, - ARG_PORT_NAME_PREFIX, + ARG_PORT_NAME_PREFIX }; diff --git a/ext/jack/gstjack.h b/ext/jack/gstjack.h index 87d7d611..e0b255a6 100644 --- a/ext/jack/gstjack.h +++ b/ext/jack/gstjack.h @@ -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 }; -- cgit v1.2.1