From a29e9205d74c0c534af835f23c97f772bc4e8576 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sat, 3 Jul 1999 21:04:35 +0000 Subject: [PATCH] make main() return an int --- bin/tests/shutdown_test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/tests/shutdown_test.c b/bin/tests/shutdown_test.c index cb445368a9..1df78689a4 100644 --- a/bin/tests/shutdown_test.c +++ b/bin/tests/shutdown_test.c @@ -154,7 +154,7 @@ new_task(isc_mem_t *mctx) { return (ti); } -void +int main(int argc, char *argv[]) { unsigned int workers; t_info *t1, *t2; @@ -197,4 +197,6 @@ main(int argc, char *argv[]) { isc_mem_destroy(&mctx2); isc_app_finish(); + + return (0); }