running clang-format

This commit is contained in:
Nora Shoemaker 2015-07-17 14:10:40 -07:00
parent c1c177addc
commit d326e28c92
1 changed files with 4 additions and 5 deletions

View File

@ -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) {