summaryrefslogtreecommitdiff
path: root/ext/gsm
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/gsm
parent97b6f6ccfa0ab837cb0e336a86f8a190d0ecd188 (diff)
downloadgstreamer-plugins-bad-c9cb9718922fbfea5bdbf6933235eefcca0152d4.tar.gz
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/gsm')
-rw-r--r--ext/gsm/gstgsmdec.c4
-rw-r--r--ext/gsm/gstgsmenc.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/gsm/gstgsmdec.c b/ext/gsm/gstgsmdec.c
index 33c470e94..8e184121a 100644
--- a/ext/gsm/gstgsmdec.c
+++ b/ext/gsm/gstgsmdec.c
@@ -42,8 +42,8 @@ enum
enum
{
- ARG_0,
- /* FILL ME */
+ ARG_0
+ /* FILL ME */
};
static void gst_gsmdec_base_init (gpointer g_class);
diff --git a/ext/gsm/gstgsmenc.c b/ext/gsm/gstgsmenc.c
index 90c908522..06b9b2125 100644
--- a/ext/gsm/gstgsmenc.c
+++ b/ext/gsm/gstgsmenc.c
@@ -43,8 +43,8 @@ enum
enum
{
- ARG_0,
- /* FILL ME */
+ ARG_0
+ /* FILL ME */
};
static void gst_gsmenc_base_init (gpointer g_class);