From: Philippe Normand Date: Sat, 12 May 2018 16:19:50 +0000 (+0100) Subject: subparse: follow-up build fix after d871b1205 X-Git-Tag: accepted/tizen/unified/20181113.163401~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=27f0b6835d5a798fbe976fba9d192afecf1b9e8a;p=platform%2Fupstream%2Fgst-plugins-base.git subparse: follow-up build fix after d871b1205 - this is from upstream Change-Id: I3d463b2b511956961a5908bf82d816e6bc6cd652 --- diff --git a/gst/subparse/gstsubparse.c b/gst/subparse/gstsubparse.c index de274e9..0987585 100644 --- a/gst/subparse/gstsubparse.c +++ b/gst/subparse/gstsubparse.c @@ -885,8 +885,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));