fourth batch : remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc (in ...

Original commit message from CVS:
fourth batch :
remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc
(in gst-plugins/sys/ this time)
This commit is contained in:
Stéphane Loeuillet 2004-05-21 23:53:08 +00:00
parent f68a449ea3
commit 8ab84441bb
6 changed files with 8 additions and 8 deletions

View file

@ -31,14 +31,14 @@ enum
ARG_START_TRACK,
ARG_END_TRACK,
ARG_CURRENT_TRACK,
ARG_CDDB_DISCID,
ARG_CDDB_DISCID
};
/* signals */
enum
{
TRACK_CHANGE,
LAST_SIGNAL,
LAST_SIGNAL
};
static void cdplayer_base_init (gpointer g_class);

View file

@ -60,7 +60,7 @@ enum
enum
{
ARG_0,
ARG_0
};

View file

@ -74,7 +74,7 @@ enum
{
PARSE_STATE_WAITING, /* Waiting for the start of a sequence. */
PARSE_STATE_START, /* Start of sequence seen. */
PARSE_STATE_PICTURE, /* Picture start seen. */
PARSE_STATE_PICTURE /* Picture start seen. */
};

View file

@ -101,7 +101,7 @@ enum
ARG_TRANSFER_SCALE,
ARG_DEPTH,
ARG_PORT,
ARG_AUTOEXP,
ARG_AUTOEXP
};
static void gst_qcamsrc_base_init (gpointer g_class);

View file

@ -81,14 +81,14 @@ static GstElementDetails plugin_details = {
enum
{
/* FILL ME */
LAST_SIGNAL,
LAST_SIGNAL
};
enum
{
ARG_0,
ARG_DEVICE,
ARG_BUFFER_SIZE,
ARG_BUFFER_SIZE
};
static GstStaticPadTemplate gst_sunaudiosink_sink_factory =

View file

@ -57,7 +57,7 @@ enum
ARG_TRACK,
ARG_BYTESPERREAD,
ARG_OFFSET,
ARG_MAX_ERRORS,
ARG_MAX_ERRORS
};
static void vcdsrc_base_init (gpointer g_class);