From 287b38dc709ddb8eed8ef7b0d713f9ced25427a0 Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Thu, 24 Apr 2008 22:01:52 +0000 Subject: Stop using deprecated GLib functions. Original commit message from CVS: * ext/cairo/gsttextoverlay.c: (gst_text_overlay_set_property): * gst/debug/tests.c: (md5_get_value): * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps): * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps): * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps): * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps): Stop using deprecated GLib functions. --- gst/debug/tests.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/debug') diff --git a/gst/debug/tests.c b/gst/debug/tests.c index bba3eb55..cd382782 100644 --- a/gst/debug/tests.c +++ b/gst/debug/tests.c @@ -546,7 +546,7 @@ md5_get_value (gpointer test, GValue * value) str[32] = 0; md5_read_ctx (ctx, str); - g_value_set_string_take_ownership (value, str); + g_value_take_string (value, str); } else { g_value_set_string (value, ctx->result); } -- cgit