summaryrefslogtreecommitdiffstats
path: root/ext/jack
diff options
context:
space:
mode:
authorStéphane Loeuillet <gstreamer@leroutier.net>2004-05-21 23:28:57 +0000
committerStéphane Loeuillet <gstreamer@leroutier.net>2004-05-21 23:28:57 +0000
commitc9cb9718922fbfea5bdbf6933235eefcca0152d4 (patch)
treefe125e098c3598bbf876c356fcf684ac01dfbb98 /ext/jack
parent97b6f6ccfa0ab837cb0e336a86f8a190d0ecd188 (diff)
downloadgst-plugins-bad-c9cb9718922fbfea5bdbf6933235eefcca0152d4.tar.gz
gst-plugins-bad-c9cb9718922fbfea5bdbf6933235eefcca0152d4.tar.bz2
gst-plugins-bad-c9cb9718922fbfea5bdbf6933235eefcca0152d4.zip
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)
Diffstat (limited to 'ext/jack')
-rw-r--r--ext/jack/gstjack.c2
-rw-r--r--ext/jack/gstjack.h2
2 files changed, 2 insertions, 2 deletions
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
};