mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
bin: 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
a43de49d52
commit
bf1c12342a
1 changed files with 1 additions and 1 deletions
|
@ -2152,7 +2152,7 @@ gst_bin_sort_iterator_copy (const GstBinSortIterator * it,
|
||||||
gpointer key, value;
|
gpointer key, value;
|
||||||
|
|
||||||
g_queue_init (©->queue);
|
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);
|
copy->bin = gst_object_ref (it->bin);
|
||||||
if (it->best)
|
if (it->best)
|
||||||
|
|
Loading…
Reference in a new issue