mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-11 16:55:23 +00:00
validate: fix message on runner errors
- Add newline char to avoid accidental concatenation with actual error message - Fix grammar while at it
This commit is contained in:
parent
aa006f78c4
commit
606ac60704
1 changed files with 1 additions and 1 deletions
|
@ -504,7 +504,7 @@ main (int argc, gchar ** argv)
|
|||
if (ret == 0) {
|
||||
ret = rep_err;
|
||||
if (rep_err != 0)
|
||||
g_print ("Returning %d as error where found", rep_err);
|
||||
g_print ("Returning %d as errors were found\n", rep_err);
|
||||
}
|
||||
|
||||
exit:
|
||||
|
|
Loading…
Reference in a new issue