From 49af3714e8161d285065169f5a70fe8e325c485e Mon Sep 17 00:00:00 2001 From: Matias Fontanini Date: Sat, 26 Dec 2015 07:31:53 -0800 Subject: [PATCH] Add padding at the end of the line on dns_stats Fixes #118 --- examples/dns_stats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dns_stats.cpp b/examples/dns_stats.cpp index c467d4f..d7d5b79 100644 --- a/examples/dns_stats.cpp +++ b/examples/dns_stats.cpp @@ -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)); }