From 586509d4863852e86b0ef91cd6947ad31b0a01a8 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 23 May 2016 15:24:53 +0300 Subject: [PATCH] player: fix suburi getter debug message The property is a string, not a boolean. https://bugzilla.gnome.org/show_bug.cgi?id=766607 --- gst-libs/gst/player/gstplayer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/player/gstplayer.c b/gst-libs/gst/player/gstplayer.c index 12115cf6be..28e4608cba 100644 --- a/gst-libs/gst/player/gstplayer.c +++ b/gst-libs/gst/player/gstplayer.c @@ -670,8 +670,8 @@ gst_player_get_property (GObject * object, guint prop_id, g_mutex_lock (&self->lock); g_value_set_string (value, self->suburi); g_mutex_unlock (&self->lock); - GST_DEBUG_OBJECT (self, "Returning has-suburi=%d", - g_value_get_boolean (value)); + GST_DEBUG_OBJECT (self, "Returning suburi=%s", + g_value_get_string (value)); break; case PROP_POSITION:{ gint64 position = 0;