diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 22:39:30 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 22:39:30 +0000 |
commit | 97b6f6ccfa0ab837cb0e336a86f8a190d0ecd188 (patch) | |
tree | 2b45adddd2bcce84ed41a0098790ae013fbe321c /gst/mixmatrix/mixmatrix.c | |
parent | 1e477bf4ee3f4242b8920dd131d3f77cb4a3350f (diff) | |
download | gst-plugins-bad-97b6f6ccfa0ab837cb0e336a86f8a190d0ecd188.tar.gz gst-plugins-bad-97b6f6ccfa0ab837cb0e336a86f8a190d0ecd188.tar.bz2 gst-plugins-bad-97b6f6ccfa0ab837cb0e336a86f8a190d0ecd188.zip |
first batch : remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc
Original commit message from CVS:
first batch :
remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc
Diffstat (limited to 'gst/mixmatrix/mixmatrix.c')
-rw-r--r-- | gst/mixmatrix/mixmatrix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/mixmatrix/mixmatrix.c b/gst/mixmatrix/mixmatrix.c index d8dd5ca5..5f66cc39 100644 --- a/gst/mixmatrix/mixmatrix.c +++ b/gst/mixmatrix/mixmatrix.c @@ -79,7 +79,7 @@ enum { /* FILL ME */ RESIZE_SIGNAL, - LAST_SIGNAL, + LAST_SIGNAL }; enum @@ -89,7 +89,7 @@ enum ARG_OUTSIZE, ARG_SINKPADS, ARG_SRCPADS, - ARG_MATRIXPTR, + ARG_MATRIXPTR }; static GstStaticPadTemplate mixmatrix_sink_template = |