snapshot: add a newline to the usage and error output
This commit is contained in:
parent
69436bb8a6
commit
5075b891aa
@ -41,7 +41,7 @@ main (int argc, char *argv[])
|
|||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
|
|
||||||
if (argc != 2) {
|
if (argc != 2) {
|
||||||
g_print ("usage: %s <uri>\n Writes snapshot.png in the current directory",
|
g_print ("usage: %s <uri>\n Writes snapshot.png in the current directory\n",
|
||||||
argv[0]);
|
argv[0]);
|
||||||
exit (-1);
|
exit (-1);
|
||||||
}
|
}
|
||||||
@ -53,7 +53,7 @@ main (int argc, char *argv[])
|
|||||||
pipeline = gst_parse_launch (descr, &error);
|
pipeline = gst_parse_launch (descr, &error);
|
||||||
|
|
||||||
if (error != NULL) {
|
if (error != NULL) {
|
||||||
g_print ("could not construct pipeline: %s", error->message);
|
g_print ("could not construct pipeline: %s\n", error->message);
|
||||||
g_error_free (error);
|
g_error_free (error);
|
||||||
exit (-1);
|
exit (-1);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user