summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig) <jsteffens@make.tv>2020-01-09 20:07:06 +0100
committerTim-Philipp Müller <tim@centricular.com>2020-01-09 20:20:47 +0000
commit63f0b31dbfa96465993eac3ea14ea41dd0ca324e (patch)
treeb84229161df11e3b1da11103907f2ae51f9a2762
parent5c47fe611894ebfd8da946797802913042eff3bf (diff)
downloadgstreamer-63f0b31dbfa96465993eac3ea14ea41dd0ca324e.tar.gz
bin: Fix deep-element-removed log message
child and bin were switched. https://gitlab.freedesktop.org/gstreamer/gstreamer/merge_requests/354
-rw-r--r--gst/gstbin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstbin.c b/gst/gstbin.c
index 17190fda1b..c1a4454a23 100644
--- a/gst/gstbin.c
+++ b/gst/gstbin.c
@@ -1485,7 +1485,7 @@ gst_bin_deep_element_removed_func (GstBin * bin, GstBin * sub_bin,
GST_LOG_OBJECT (parent_bin, "emitting deep-element-removed for element "
"%" GST_PTR_FORMAT " which has just been removed from %" GST_PTR_FORMAT,
- sub_bin, child);
+ child, sub_bin);
g_signal_emit (parent_bin, gst_bin_signals[DEEP_ELEMENT_REMOVED], 0, sub_bin,
child);