Commit 55e9e499 authored by Martin Blix Grydeland's avatar Martin Blix Grydeland

Change 'exit (' to 'exit('

parent 9b620f86
...@@ -233,7 +233,7 @@ tst_cb(const struct vev *ve, int what) ...@@ -233,7 +233,7 @@ tst_cb(const struct vev *ve, int what)
jp->tst->filename, t); jp->tst->filename, t);
if (!vtc_continue) { if (!vtc_continue) {
/* XXX kill -9 other jobs ? */ /* XXX kill -9 other jobs ? */
exit (2); exit(2);
} }
} else if (vtc_verbosity) { } else if (vtc_verbosity) {
printf("# top TEST %s passed (%.3f)\n", printf("# top TEST %s passed (%.3f)\n",
...@@ -343,7 +343,7 @@ main(int argc, char * const *argv) ...@@ -343,7 +343,7 @@ main(int argc, char * const *argv)
if (!parse_D_opt(optarg)) { if (!parse_D_opt(optarg)) {
fprintf(stderr, "Cannot parse D opt '%s'\n", fprintf(stderr, "Cannot parse D opt '%s'\n",
optarg); optarg);
exit (2); exit(2);
} }
break; break;
case 'j': case 'j':
...@@ -386,7 +386,7 @@ main(int argc, char * const *argv) ...@@ -386,7 +386,7 @@ main(int argc, char * const *argv)
*argv, strerror(errno)); *argv, strerror(errno));
if (vtc_continue) if (vtc_continue)
continue; continue;
exit (2); exit(2);
} }
ALLOC_OBJ(tp, TST_MAGIC); ALLOC_OBJ(tp, TST_MAGIC);
AN(tp); AN(tp);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment