validate: Add a missing new line to media info files

This commit is contained in:
Thibault Saunier 2016-02-29 15:55:47 +01:00
parent 62d8235598
commit 0535071158

View file

@ -138,7 +138,7 @@ serialize_filenode (GstValidateMediaDescriptorWriter * writer)
caps_str = g_strdup ("");
res = g_string_new (tmpstr);
g_string_append_printf (res, " <streams caps=\"%s\">", caps_str);
g_string_append_printf (res, " <streams caps=\"%s\">\n", caps_str);
g_free (caps_str);
g_free (tmpstr);
for (tmp = filenode->streams; tmp; tmp = tmp->next) {