projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
953db96
)
validate: media-check: add newline to end of print statements
author
Wonchul Lee
<chul0812@gmail.com>
Fri, 29 May 2015 07:45:25 +0000
(16:45 +0900)
committer
Tim-Philipp Müller
<tim@centricular.com>
Sun, 14 Jun 2015 21:41:12 +0000
(22:41 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=750089
validate/tools/gst-validate-media-check.c
patch
|
blob
|
history
diff --git
a/validate/tools/gst-validate-media-check.c
b/validate/tools/gst-validate-media-check.c
index f14f2ba5e33078402bc18184fe5a03684908a991..362c97e4c9a8dda241352cf6b4d97d743a099a93 100644
(file)
--- 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;
}