[EDGE-879] run clang-format and make sure style is good
This commit is contained in:
parent
d6551de8d4
commit
5892385e5c
|
@ -1429,17 +1429,14 @@ int main(int argc, char **argv) {
|
|||
if ((int)config.nreqs < config.nconns) {
|
||||
std::cerr << "-C, -n: warning: two different test times are being set. "
|
||||
<< std::endl;
|
||||
std::cerr << "The test will run for "
|
||||
<< c_time
|
||||
<< " seconds." << std::endl;
|
||||
}
|
||||
else {
|
||||
std::cerr << "The test will run for " << c_time << " seconds."
|
||||
<< std::endl;
|
||||
} else {
|
||||
std::cout << "-C, -n: warning: two different test times are being set. "
|
||||
<< std::endl;
|
||||
std::cout << "The smaller of the two will be chosen and the test will "
|
||||
<< "run for "
|
||||
<< std::min(n_time, c_time)
|
||||
<< " seconds." << std::endl;
|
||||
<< "run for " << std::min(n_time, c_time) << " seconds."
|
||||
<< std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue