mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
bin: fix compiler warning caused by previous commit
Add forgotten "git commit --amend" for last commit Need to cast away the const as g_queue_foreach() takes a non-const GQueue*
This commit is contained in:
parent
5104eb245f
commit
379d1fee38
1 changed files with 1 additions and 1 deletions
|
@ -1963,7 +1963,7 @@ gst_bin_sort_iterator_copy (const GstBinSortIterator * it,
|
|||
gpointer key, value;
|
||||
|
||||
g_queue_init (©->queue);
|
||||
g_queue_foreach (&it->queue, copy_to_queue, ©->queue);
|
||||
g_queue_foreach ((GQueue *) & it->queue, copy_to_queue, ©->queue);
|
||||
|
||||
copy->bin = gst_object_ref (it->bin);
|
||||
if (it->best)
|
||||
|
|
Loading…
Reference in a new issue