diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 23:53:08 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 23:53:08 +0000 |
commit | 8ab84441bb8c1e7e698eb152c13e64e6681638db (patch) | |
tree | 5506a8adac2cb60408003121c0c9dfc076a20986 /sys/sunaudio | |
parent | f68a449ea32c9a7c85f73048464e5cca047c7a58 (diff) | |
download | gst-plugins-bad-8ab84441bb8c1e7e698eb152c13e64e6681638db.tar.gz gst-plugins-bad-8ab84441bb8c1e7e698eb152c13e64e6681638db.tar.bz2 gst-plugins-bad-8ab84441bb8c1e7e698eb152c13e64e6681638db.zip |
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)
Diffstat (limited to 'sys/sunaudio')
-rw-r--r-- | sys/sunaudio/gstsunaudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sunaudio/gstsunaudio.c b/sys/sunaudio/gstsunaudio.c index f95138b0..de24afc3 100644 --- a/sys/sunaudio/gstsunaudio.c +++ b/sys/sunaudio/gstsunaudio.c @@ -81,14 +81,14 @@ static GstElementDetails plugin_details = { enum { /* FILL ME */ - LAST_SIGNAL, + LAST_SIGNAL }; enum { ARG_0, ARG_DEVICE, - ARG_BUFFER_SIZE, + ARG_BUFFER_SIZE }; static GstStaticPadTemplate gst_sunaudiosink_sink_factory = |