diff options
author | Christophe Jaillet <jailletc36@apache.org> | 2022-04-20 08:52:58 +0200 |
---|---|---|
committer | Christophe Jaillet <jailletc36@apache.org> | 2022-04-20 08:52:58 +0200 |
commit | 2fa279478762d5b470966eee0d4fc1734f3d698a (patch) | |
tree | 5114efc08270b8020ed89c527bea2239e0f93f3e /support | |
parent | * Implement full auto status ("key: value" type status output). (diff) | |
download | apache2-2fa279478762d5b470966eee0d4fc1734f3d698a.tar.xz apache2-2fa279478762d5b470966eee0d4fc1734f3d698a.zip |
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
Diffstat (limited to 'support')
-rw-r--r-- | support/ab.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/support/ab.c b/support/ab.c index bd44ead6ba..b9c055eec2 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)); |