You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by co...@apache.org on 2010/12/08 22:45:05 UTC

svn commit: r1043696 - /tomcat/native/trunk/native/src/poll.c

Author: costin
Date: Wed Dec  8 21:45:05 2010
New Revision: 1043696

URL: http://svn.apache.org/viewvc?rev=1043696&view=rev
Log:
Fix comment style, thanks Mladen.

Modified:
    tomcat/native/trunk/native/src/poll.c

Modified: tomcat/native/trunk/native/src/poll.c
URL: http://svn.apache.org/viewvc/tomcat/native/trunk/native/src/poll.c?rev=1043696&r1=1043695&r2=1043696&view=diff
==============================================================================
--- tomcat/native/trunk/native/src/poll.c (original)
+++ tomcat/native/trunk/native/src/poll.c Wed Dec  8 21:45:05 2010
@@ -120,8 +120,9 @@ TCN_IMPLEMENT_CALL(jlong, Poll, create)(
     if (f & APR_POLLSET_THREADSAFE) {
         apr_status_t rv = apr_pollset_create(&pollset, (apr_uint32_t)size,
                                              p, f);
-        // Pass the ENOTIMPL to java, as described in javadocs. Java must clean the
-        // flag, will know it's not supported.
+        /* Pass the ENOTIMPL to java, as described in javadocs. Java must clean the
+           flag, will know it's not supported.
+        */
         if (rv != APR_SUCCESS) {
             tcn_ThrowAPRException(e, rv);
             goto cleanup;



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org