summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2022-04-20 06:52:58 +0000
committerChristophe Jaillet <jailletc36@apache.org>2022-04-20 06:52:58 +0000
commit2fa279478762d5b470966eee0d4fc1734f3d698a (patch)
tree5114efc08270b8020ed89c527bea2239e0f93f3e /support
parent80795a9ae24ef3b1a3e818d3023f4b68707cb87f (diff)
downloadhttpd-2fa279478762d5b470966eee0d4fc1734f3d698a.tar.gz
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.c10
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));