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 | c9cb9718922fbfea5bdbf6933235eefcca0152d4 (patch) | |
tree | fe125e098c3598bbf876c356fcf684ac01dfbb98 /gst | |
parent | 97b6f6ccfa0ab837cb0e336a86f8a190d0ecd188 (diff) | |
download | gst-plugins-bad-c9cb9718922fbfea5bdbf6933235eefcca0152d4.tar.gz gst-plugins-bad-c9cb9718922fbfea5bdbf6933235eefcca0152d4.tar.bz2 gst-plugins-bad-c9cb9718922fbfea5bdbf6933235eefcca0152d4.zip |
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 'gst')
-rw-r--r-- | gst/smoothwave/gstsmoothwave.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/smoothwave/gstsmoothwave.c b/gst/smoothwave/gstsmoothwave.c index 9775e3d0..7f1dc9cd 100644 --- a/gst/smoothwave/gstsmoothwave.c +++ b/gst/smoothwave/gstsmoothwave.c @@ -44,7 +44,7 @@ enum ARG_0, ARG_WIDTH, ARG_HEIGHT, - ARG_WIDGET, + ARG_WIDGET }; static void gst_smoothwave_base_init (gpointer g_class); |