summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-09-19 10:07:51 -0400
committerSebastian Dröge <sebastian@centricular.com>2016-09-19 10:07:51 -0400
commitbf1c12342ab138cc552a24c5790ca957553880d5 (patch)
treec6955c15f2b75af5533a5b1fcd41320dc3d7bc9f /gst
parenta43de49d522178d592c44149fd284418e8314336 (diff)
bin: Add forgotten "git commit --amend" for last commit
Need to cast away the const as g_queue_foreach() takes a non-const GQueue*
Diffstat (limited to 'gst')
-rw-r--r--gst/gstbin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstbin.c b/gst/gstbin.c
index 28bae6710d..820488b001 100644
--- a/gst/gstbin.c
+++ b/gst/gstbin.c
@@ -2152,7 +2152,7 @@ gst_bin_sort_iterator_copy (const GstBinSortIterator * it,
gpointer key, value;
g_queue_init (&copy->queue);
- g_queue_foreach (&it->queue, copy_to_queue, &copy->queue);
+ g_queue_foreach ((GQueue *) & it->queue, copy_to_queue, &copy->queue);
copy->bin = gst_object_ref (it->bin);
if (it->best)