You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ro...@apache.org on 2005/11/13 19:33:02 UTC

svn commit: r333086 - /apr/examples/trunk/helloworld/helloworld.c

Author: rooneg
Date: Sun Nov 13 10:32:52 2005
New Revision: 333086

URL: http://svn.apache.org/viewcvs?rev=333086&view=rev
Log:
Well, since this is a portable runtime...

* helloworld/helloworld.c
  (main): Return EXIT_SUCCESS, not 0, for maximum portability.

Modified:
    apr/examples/trunk/helloworld/helloworld.c

Modified: apr/examples/trunk/helloworld/helloworld.c
URL: http://svn.apache.org/viewcvs/apr/examples/trunk/helloworld/helloworld.c?rev=333086&r1=333085&r2=333086&view=diff
==============================================================================
--- apr/examples/trunk/helloworld/helloworld.c (original)
+++ apr/examples/trunk/helloworld/helloworld.c Sun Nov 13 10:32:52 2005
@@ -18,5 +18,5 @@
     apr_file_open_stdout(&out, pool);
     apr_file_puts("Hello World!" APR_EOL_STR, out);
 
-    return 0;
+    return EXIT_SUCCESS;
 }