diff options
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 b930153f..1b7bf936 100644 --- a/gst/modplug/gstmodplug.cc +++ b/gst/modplug/gstmodplug.cc @@ -459,7 +459,7 @@ gst_modplug_load_song (GstModPlug * modplug) GST_DEBUG_OBJECT (modplug, "Setting caps"); /* negotiate srcpad caps */ - if (othercaps = gst_pad_get_allowed_caps (modplug->srcpad)) { + if ((othercaps = gst_pad_get_allowed_caps (modplug->srcpad))) { newcaps = gst_caps_copy_nth (othercaps, 0); gst_caps_unref (othercaps); } else { |