Author: mturk
Date: Tue Mar 10 12:23:59 2009
New Revision: 752087
URL: http://svn.apache.org/viewvc?rev=752087&view=rev
Log:
Fix signed/unsigne compile warning
Modified:
tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c
Modified: tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c
URL:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c?rev=752087&r1=752086&r2=752087&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c Tue Mar 10
12:23:59 2009
@@ -165,7 +165,7 @@
{
JK_TRACE_ENTER(l);
if (uw_map) {
- int i, j, off, k;
+ int i, off, k;
uri_worker_record_t *uwr = NULL;
char buf[32];
jk_log(l, JK_LOG_DEBUG, "uri map dump %s: index=%d file='%s'
reject_unsafe=%d "
@@ -179,6 +179,7 @@
off = uw_map->index;
for(i=0;i<=1;i++) {
+ unsigned int j;
k = (i + off) % 2;
for (j = 0; j < uw_map->size[k]; j++) {
uwr = uw_map->maps[k][j];
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]