bin: fix bogus variable type

The result of gst_iterator_find_custom() is not a GstIterator *.
This commit is contained in:
Tim-Philipp Müller 2010-04-15 11:38:19 +01:00
parent 24f67f76bf
commit c008823e6e

View file

@ -3589,7 +3589,7 @@ GstElement *
gst_bin_get_by_name (GstBin * bin, const gchar * name) gst_bin_get_by_name (GstBin * bin, const gchar * name)
{ {
GstIterator *children; GstIterator *children;
GstIterator *result; gpointer result;
g_return_val_if_fail (GST_IS_BIN (bin), NULL); g_return_val_if_fail (GST_IS_BIN (bin), NULL);