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_START_TRACK,
ARG_END_TRACK, ARG_END_TRACK,
ARG_CURRENT_TRACK, ARG_CURRENT_TRACK,
ARG_CDDB_DISCID, ARG_CDDB_DISCID
}; };
/* signals */ /* signals */
enum enum
{ {
TRACK_CHANGE, TRACK_CHANGE,
LAST_SIGNAL, LAST_SIGNAL
}; };
static void cdplayer_base_init (gpointer g_class); static void cdplayer_base_init (gpointer g_class);

View File

@ -60,7 +60,7 @@ enum
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_WAITING, /* Waiting for the start of a sequence. */
PARSE_STATE_START, /* Start of sequence seen. */ 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_TRANSFER_SCALE,
ARG_DEPTH, ARG_DEPTH,
ARG_PORT, ARG_PORT,
ARG_AUTOEXP, ARG_AUTOEXP
}; };
static void gst_qcamsrc_base_init (gpointer g_class); static void gst_qcamsrc_base_init (gpointer g_class);

View File

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

View File

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