validate: media-check: add newline to end of print statements

https://bugzilla.gnome.org/show_bug.cgi?id=750089
This commit is contained in:
Wonchul Lee 2015-05-29 16:45:25 +09:00 committed by Tim-Philipp Müller
parent 953db96ede
commit 9ea5df9c98

View file

@ -98,7 +98,7 @@ main (int argc, gchar ** argv)
gst_media_descriptor_writer_new_discover (runner, argv[1], full, TRUE,
&err);
if (writer == NULL) {
g_print ("Could not discover file: %s", argv[1]);
g_print ("Could not discover file: %s\n", argv[1]);
ret = 1;
goto out;
}
@ -110,7 +110,7 @@ main (int argc, gchar ** argv)
reference = gst_media_descriptor_parser_new (runner, expected_file, &err);
if (reference == NULL) {
g_print ("Could not parse file: %s", expected_file);
g_print ("Could not parse file: %s\n", expected_file);
ret = 1;
goto out;
}