summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.co.uk>2009-04-22 18:01:07 -0400
committerDave Robillard <dave@drobilla.net>2009-05-03 12:03:17 -0400
commitf90b589e5e2853d5a91d37b2308cd00e95ae55c5 (patch)
treefdaf4f68e26e1b681a0004473613d03c576b6b2d /gst
parent2707477e20124cbdd386e464b016b16d9ea6efd6 (diff)
downloadgst-plugins-bad-f90b589e5e2853d5a91d37b2308cd00e95ae55c5.tar.gz
gst-plugins-bad-f90b589e5e2853d5a91d37b2308cd00e95ae55c5.tar.bz2
gst-plugins-bad-f90b589e5e2853d5a91d37b2308cd00e95ae55c5.zip
rtpmux: Fix warning
Diffstat (limited to 'gst')
-rw-r--r--gst/rtpmux/gstrtpmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtpmux/gstrtpmux.c b/gst/rtpmux/gstrtpmux.c
index 2a045b94..d7a9b47c 100644
--- a/gst/rtpmux/gstrtpmux.c
+++ b/gst/rtpmux/gstrtpmux.c
@@ -274,7 +274,7 @@ gst_rtp_mux_setup_sinkpad (GstRTPMux * rtp_mux, GstPad * sinkpad)
gst_pad_set_active (sinkpad, TRUE);
gst_pad_set_element_private (sinkpad, padpriv);
- g_object_weak_ref (sinkpad, free_pad_private, padpriv);
+ g_object_weak_ref (G_OBJECT (sinkpad), free_pad_private, padpriv);
/* dd the pad to the element */
gst_element_add_pad (GST_ELEMENT (rtp_mux), sinkpad);