mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
bin: fix bogus variable type
The result of gst_iterator_find_custom() is not a GstIterator *.
This commit is contained in:
parent
24f67f76bf
commit
c008823e6e
1 changed files with 1 additions and 1 deletions
|
@ -3589,7 +3589,7 @@ GstElement *
|
|||
gst_bin_get_by_name (GstBin * bin, const gchar * name)
|
||||
{
|
||||
GstIterator *children;
|
||||
GstIterator *result;
|
||||
gpointer result;
|
||||
|
||||
g_return_val_if_fail (GST_IS_BIN (bin), NULL);
|
||||
|
||||
|
|
Loading…
Reference in a new issue