[master] 55e9e49 Change 'exit (' to 'exit('

Martin Blix Grydeland martin at varnish-cache.org
Tue Mar 22 09:07:49 CET 2011


commit 55e9e499ffe8a2d085f33dc9f0d9cf2ddb73c936
Author: Martin Blix Grydeland <martin at varnish-software.com>
Date:   Mon Mar 21 15:48:42 2011 +0100

    Change 'exit (' to 'exit('

diff --git a/bin/varnishtest/vtc_main.c b/bin/varnishtest/vtc_main.c
index 07a876e..3ae243e 100644
--- a/bin/varnishtest/vtc_main.c
+++ b/bin/varnishtest/vtc_main.c
@@ -233,7 +233,7 @@ tst_cb(const struct vev *ve, int what)
 			    jp->tst->filename, t);
 			if (!vtc_continue) {
 				/* XXX kill -9 other jobs ? */
-				exit (2);
+				exit(2);
 			}
 		} else if (vtc_verbosity) {
 			printf("#     top  TEST %s passed (%.3f)\n",
@@ -343,7 +343,7 @@ main(int argc, char * const *argv)
 			if (!parse_D_opt(optarg)) {
 				fprintf(stderr, "Cannot parse D opt '%s'\n", 
 					optarg);
-				exit (2);
+				exit(2);
 			}
 			break;
 		case 'j':
@@ -386,7 +386,7 @@ main(int argc, char * const *argv)
 			    *argv, strerror(errno));
 			if (vtc_continue)
 				continue;
-			exit (2);
+			exit(2);
 		}
 		ALLOC_OBJ(tp, TST_MAGIC);
 		AN(tp);



More information about the varnish-commit mailing list