mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
player: fix suburi getter debug message
The property is a string, not a boolean. https://bugzilla.gnome.org/show_bug.cgi?id=766607
This commit is contained in:
parent
3af9fd7322
commit
586509d486
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue