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/modplug | |
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/modplug')
-rw-r--r-- | gst/modplug/gstmodplug.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/modplug/gstmodplug.cc b/gst/modplug/gstmodplug.cc index e69c1c8b..8e8b6efd 100644 --- a/gst/modplug/gstmodplug.cc +++ b/gst/modplug/gstmodplug.cc @@ -91,7 +91,7 @@ enum { MODPLUG_STATE_NEED_TUNE = 1, MODPLUG_STATE_LOAD_TUNE = 2, - MODPLUG_STATE_PLAY_TUNE = 3, + MODPLUG_STATE_PLAY_TUNE = 3 }; static void gst_modplug_base_init (GstModPlugClass * klass); |