diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 23:28:57 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 23:28:57 +0000 |
commit | 4c89978b6e2e5d8d37d3b6810c3ce38bf20fb673 (patch) | |
tree | b30718e4a7043aae0bfdd4269074e79c1cb9d5e3 /ext/jpeg | |
parent | ec8a1bb76cd36de9bfa880fed9d44ae617fa2fc4 (diff) |
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/jpeg')
-rw-r--r-- | ext/jpeg/gstjpegdec.c | 4 | ||||
-rw-r--r-- | ext/jpeg/gstjpegenc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/jpeg/gstjpegdec.c b/ext/jpeg/gstjpegdec.c index 6d8ea1f9..be67a81e 100644 --- a/ext/jpeg/gstjpegdec.c +++ b/ext/jpeg/gstjpegdec.c @@ -47,8 +47,8 @@ enum enum { - ARG_0, - /* FILL ME */ + ARG_0 + /* FILL ME */ }; static void gst_jpegdec_base_init (gpointer g_class); diff --git a/ext/jpeg/gstjpegenc.c b/ext/jpeg/gstjpegenc.c index 97efeafd..ffce61f3 100644 --- a/ext/jpeg/gstjpegenc.c +++ b/ext/jpeg/gstjpegenc.c @@ -51,8 +51,8 @@ enum { ARG_0, ARG_QUALITY, - ARG_SMOOTHING, - /* FILL ME */ + ARG_SMOOTHING + /* FILL ME */ }; static void gst_jpegenc_base_init (gpointer g_class); |