1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Add padding at the end of the line on dns_stats

Fixes #118
This commit is contained in:
Matias Fontanini
2015-12-26 07:31:53 -08:00
parent 36216107ec
commit 49af3714e8

View File

@@ -189,7 +189,7 @@ int main(int argc, char *argv[]) {
auto info = monitor.stats().get_information();
std::cout << "\rAverage " << info.average.count()
<< "ms. Worst: " << info.worst.count() << "ms. Count: "
<< info.count;
<< info.count << " ";
std::cout.flush();
std::this_thread::sleep_for(std::chrono::seconds(1));
}