From b7e8d1657dae1bad14b799ce15355d834333d14f Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Sat, 12 May 2018 17:19:50 +0100 Subject: [PATCH] subparse: follow-up build fix after d871b1205 --- gst/subparse/gstsubparse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/subparse/gstsubparse.c b/gst/subparse/gstsubparse.c index a83ac7501e..58d7606d6d 100644 --- a/gst/subparse/gstsubparse.c +++ b/gst/subparse/gstsubparse.c @@ -837,8 +837,8 @@ subrip_fix_up_markup (gchar ** p_txt, gconstpointer allowed_tags_ptr) s = g_string_new (*p_txt); while (num_open_tags > 0) { - GST_LOG ("adding missing closing tag '%s'", g_ptr_array_index (open_tags, - num_open_tags - 1)); + GST_LOG ("adding missing closing tag '%s'", + (char *) g_ptr_array_index (open_tags, num_open_tags - 1)); g_string_append_c (s, '<'); g_string_append_c (s, '/'); g_string_append (s, g_ptr_array_index (open_tags, num_open_tags - 1));