From: Enrico Scholz Date: Mon, 9 Feb 2004 23:40:45 +0000 (+0000) Subject: added explicite 'return' for non-C99 compilers X-Git-Tag: VERSION_0_10~699 X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=072405f5c90d7da9ad4b3e171e0e64e2256ae66c;p=util-vserver.git added explicite 'return' for non-C99 compilers git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@856 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- diff --git a/util-vserver/src/testsuite/chcontext-test.c b/util-vserver/src/testsuite/chcontext-test.c index 7a92c83..7a156a3 100644 --- a/util-vserver/src/testsuite/chcontext-test.c +++ b/util-vserver/src/testsuite/chcontext-test.c @@ -29,4 +29,6 @@ int main() { if (0) fake_main(0,0); test(); + + return EXIT_SUCCESS; }