From d326e28c9233eed625d903d2e295e0898b179ab1 Mon Sep 17 00:00:00 2001 From: Nora Shoemaker Date: Fri, 17 Jul 2015 14:10:40 -0700 Subject: [PATCH] running clang-format --- src/h2load.cc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/h2load.cc b/src/h2load.cc index 5ec34e82..b1f5a672 100644 --- a/src/h2load.cc +++ b/src/h2load.cc @@ -1432,19 +1432,18 @@ int main(int argc, char **argv) { std::cerr << "The test will create " << (config.max_concurrent_streams * config.nconns) << " total requests." << std::endl; - } - else { + } else { std::cout << "-C, -n: warning: number of requests conflict. " << std::endl; std::cout << "The smaller of the two will be chosen and the test will " << "create " - << std::min(config.nreqs, - (size_t)(config.max_concurrent_streams * config.nconns)) + << std::min( + config.nreqs, + (size_t)(config.max_concurrent_streams * config.nconns)) << " total requests." << std::endl; } } - Headers shared_nva; shared_nva.emplace_back(":scheme", config.scheme); if (config.port != config.default_port) {