From 4c89978b6e2e5d8d37d3b6810c3ce38bf20fb673 Mon Sep 17 00:00:00 2001 From: Stéphane Loeuillet Date: Fri, 21 May 2004 23:28:57 +0000 Subject: 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) --- ext/speex/gstspeexdec.c | 4 ++-- ext/speex/gstspeexenc.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/speex') diff --git a/ext/speex/gstspeexdec.c b/ext/speex/gstspeexdec.c index 003dd68b..660f332b 100644 --- a/ext/speex/gstspeexdec.c +++ b/ext/speex/gstspeexdec.c @@ -42,8 +42,8 @@ enum enum { - ARG_0, - /* FILL ME */ + ARG_0 + /* FILL ME */ }; static void gst_speexdec_base_init (gpointer g_class); diff --git a/ext/speex/gstspeexenc.c b/ext/speex/gstspeexenc.c index b446ec98..2552c92e 100644 --- a/ext/speex/gstspeexenc.c +++ b/ext/speex/gstspeexenc.c @@ -43,8 +43,8 @@ enum enum { - ARG_0, - /* FILL ME */ + ARG_0 + /* FILL ME */ }; static void gst_speexenc_base_init (gpointer g_class); -- cgit