]> granicus.if.org Git - apache/commitdiff
Silence a sparse warning about inconsistent indenting
authorChristophe Jaillet <jailletc36@apache.org>
Mon, 31 Aug 2015 19:47:12 +0000 (19:47 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Mon, 31 Aug 2015 19:47:12 +0000 (19:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1700318 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/ajp_msg.c

index 71bc1dd902a04fe9b6c5027d943d11aeac67703d..06bee9be7d43fe913f1200f9be07ba4a81f58e2f 100644 (file)
@@ -78,7 +78,7 @@ apr_status_t ajp_msg_dump(apr_pool_t *pool, ajp_msg_t *msg, char *err,
             line_len = AJP_MSG_DUMP_BYTES_PER_LINE;
         }
         for (j = 0; j < line_len; j++) {
-             x = msg->buf[i + j];
+            x = msg->buf[i + j];
 
             *current++ = hex_table[x >> 4];
             *current++ = hex_table[x & 0x0f];