You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2010/02/23 02:56:51 UTC

svn commit: r915132 - /tomcat/jk/trunk/native/common/jk_util.c

Author: rjung
Date: Tue Feb 23 01:56:51 2010
New Revision: 915132

URL: http://svn.apache.org/viewvc?rev=915132&view=rev
Log:
Fix indentation.
No functional change.

Modified:
    tomcat/jk/trunk/native/common/jk_util.c

Modified: tomcat/jk/trunk/native/common/jk_util.c
URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/native/common/jk_util.c?rev=915132&r1=915131&r2=915132&view=diff
==============================================================================
--- tomcat/jk/trunk/native/common/jk_util.c (original)
+++ tomcat/jk/trunk/native/common/jk_util.c Tue Feb 23 01:56:51 2010
@@ -2144,13 +2144,13 @@
     switch (sizeof(pthread_t)) {
         case sizeof(jk_uint32_t):
             return ((jk_uint32_t)u.tid >> 2);
-        break;
+            break;
         case sizeof(jk_uint64_t):
             return (jk_uint32_t)((((jk_uint64_t)u.tid) >> 3) & 0xFFFFFFFF);
-        break;
+            break;
         default:
             return 0;
-        break;
+            break;
     }
 #endif /* AS400 */
 }



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