Revert "controller: fix g_return statement"

This reverts commit 593d2b297b.

gst_controller_set_disabled () returns a void.
This commit is contained in:
Tim-Philipp Müller 2011-11-06 00:07:10 +00:00
parent e24b1de7ae
commit ee3032a6c9

View file

@ -565,7 +565,7 @@ gst_controller_set_disabled (GstController * self, gboolean disabled)
GList *node;
GstControlledProperty *prop;
g_return_val_if_fail (GST_IS_CONTROLLER (self), FALSE);
g_return_if_fail (GST_IS_CONTROLLER (self));
g_mutex_lock (self->lock);
for (node = self->properties; node; node = node->next) {