You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2010/12/01 20:25:15 UTC

svn commit: r1041140 - /httpd/httpd/trunk/server/log.c

Author: sf
Date: Wed Dec  1 19:25:15 2010
New Revision: 1041140

URL: http://svn.apache.org/viewvc?rev=1041140&view=rev
Log:
Fix warning about comparing signed/unsigned

Modified:
    httpd/httpd/trunk/server/log.c

Modified: httpd/httpd/trunk/server/log.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/log.c?rev=1041140&r1=1041139&r2=1041140&view=diff
==============================================================================
--- httpd/httpd/trunk/server/log.c (original)
+++ httpd/httpd/trunk/server/log.c Wed Dec  1 19:25:15 2010
@@ -1017,7 +1017,7 @@ static int do_errorlog_format(apr_array_
         else if (skipping) {
             continue;
         }
-        else if (item->min_loglevel > info->level) {
+        else if ((int)item->min_loglevel > info->level) {
             len = field_start;
             skipping = 1;
         }