diff options
author | Wonchul Lee <chul0812@gmail.com> | 2015-05-29 16:45:25 +0900 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2015-06-14 22:41:12 +0100 |
commit | 9ea5df9c988a03de934902ed870866d4086c2fe5 (patch) | |
tree | 8fc06a90c9839790d5970dbbb6f10541ea9d5c8e | |
parent | 953db96ede36f90672506e1c7d7cc21a34c2b3c6 (diff) |
validate: media-check: add newline to end of print statements
https://bugzilla.gnome.org/show_bug.cgi?id=750089
-rw-r--r-- | validate/tools/gst-validate-media-check.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/validate/tools/gst-validate-media-check.c b/validate/tools/gst-validate-media-check.c index f14f2ba..362c97e 100644 --- a/validate/tools/gst-validate-media-check.c +++ b/validate/tools/gst-validate-media-check.c @@ -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; } |