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)
This commit is contained in:
Stéphane Loeuillet 2004-05-21 23:28:57 +00:00 committed by Tim-Philipp Müller
parent f88ab240e5
commit da195d3211
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ static void gst_jack_loop (GstElement * element);
enum
{
ARG_0,
ARG_PORT_NAME_PREFIX,
ARG_PORT_NAME_PREFIX
};

View 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
};