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:
Reynaldo H. Verdejo Pinochet 2017-02-16 13:30:06 -08:00
parent aa006f78c4
commit 606ac60704

View file

@ -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: