From: Christophe Jaillet Date: Mon, 31 Aug 2015 19:47:12 +0000 (+0000) Subject: Silence a sparse warning about inconsistent indenting X-Git-Tag: 2.5.0-alpha~2897 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4fb2059a582e78f5f7db3d45ab4de18e32d67839;p=apache Silence a sparse warning about inconsistent indenting git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1700318 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/ajp_msg.c b/modules/proxy/ajp_msg.c index 71bc1dd902..06bee9be7d 100644 --- a/modules/proxy/ajp_msg.c +++ b/modules/proxy/ajp_msg.c @@ -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];