mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-09 07:52:36 +00:00
subparse: follow-up build fix after d871b1205
This commit is contained in:
parent
8cfd85ec61
commit
b7e8d1657d
1 changed files with 2 additions and 2 deletions
|
@ -837,8 +837,8 @@ subrip_fix_up_markup (gchar ** p_txt, gconstpointer allowed_tags_ptr)
|
||||||
|
|
||||||
s = g_string_new (*p_txt);
|
s = g_string_new (*p_txt);
|
||||||
while (num_open_tags > 0) {
|
while (num_open_tags > 0) {
|
||||||
GST_LOG ("adding missing closing tag '%s'", g_ptr_array_index (open_tags,
|
GST_LOG ("adding missing closing tag '%s'",
|
||||||
num_open_tags - 1));
|
(char *) g_ptr_array_index (open_tags, num_open_tags - 1));
|
||||||
g_string_append_c (s, '<');
|
g_string_append_c (s, '<');
|
||||||
g_string_append_c (s, '/');
|
g_string_append_c (s, '/');
|
||||||
g_string_append (s, g_ptr_array_index (open_tags, num_open_tags - 1));
|
g_string_append (s, g_ptr_array_index (open_tags, num_open_tags - 1));
|
||||||
|
|
Loading…
Reference in a new issue