From: Christophe Jaillet Date: Wed, 20 Apr 2022 06:52:58 +0000 (+0000) Subject: Fix alignment in an 'if' block. X-Git-Tag: 2.5.0-alpha2-ci-test-only~376 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fa279478762d5b470966eee0d4fc1734f3d698a;p=thirdparty%2Fapache%2Fhttpd.git Fix alignment in an 'if' block. [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1900064 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/ab.c b/support/ab.c index bd44ead6ba0..b9c055eec2f 100644 --- a/support/ab.c +++ b/support/ab.c @@ -1890,11 +1890,11 @@ static void test(void) if (!use_html) { printf("Benchmarking %s ", hostname); - if (isproxy) - printf("[through %s:%d] ", proxyhost, proxyport); - printf("(be patient)%s", - (heartbeatres ? "\n" : "...")); - fflush(stdout); + if (isproxy) + printf("[through %s:%d] ", proxyhost, proxyport); + printf("(be patient)%s", + (heartbeatres ? "\n" : "...")); + fflush(stdout); } con = xcalloc(concurrency, sizeof(struct connection));