mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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:
parent
f88ab240e5
commit
da195d3211
2 changed files with 2 additions and 2 deletions
|
@ -85,7 +85,7 @@ static void gst_jack_loop (GstElement * element);
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
ARG_0,
|
ARG_0,
|
||||||
ARG_PORT_NAME_PREFIX,
|
ARG_PORT_NAME_PREFIX
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,7 @@ typedef GstJackClass GstJackSrcClass;
|
||||||
enum {
|
enum {
|
||||||
GST_JACK_OPEN = GST_BIN_FLAG_LAST,
|
GST_JACK_OPEN = GST_BIN_FLAG_LAST,
|
||||||
GST_JACK_ACTIVE,
|
GST_JACK_ACTIVE,
|
||||||
GST_JACK_FLAG_LAST = GST_BIN_FLAG_LAST + 3,
|
GST_JACK_FLAG_LAST = GST_BIN_FLAG_LAST + 3
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue