From 6d8ad0edf6bae57a6e8ca5cc1a7add1659a92691 Mon Sep 17 00:00:00 2001 From: Brad Hubbard Date: Fri, 6 May 2016 15:05:42 +1000 Subject: [PATCH] common: Add space between timestamp and "min lat:" in bench output This change is taken from 069d95eaf49cadaa9a8fa1fa186455944a50ec7d but I did not want to cherry-pick that patch since the rest of it is purely cosmetic and would be unlikely to apply cleanly. Signed-off-by: Brad Hubbard --- src/common/obj_bencher.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/obj_bencher.cc b/src/common/obj_bencher.cc index 32fb9a2f19758..ec2fd9a51421b 100644 --- a/src/common/obj_bencher.cc +++ b/src/common/obj_bencher.cc @@ -86,7 +86,7 @@ void *ObjBencher::status_printer(void *_bencher) { if (i % 20 == 0) { if (i > 0) - cur_time.localtime(cout) << "min lat: " << data.min_latency + cur_time.localtime(cout) << " min lat: " << data.min_latency << " max lat: " << data.max_latency << " avg lat: " << data.avg_latency << std::endl; //I'm naughty and don't reset the fill -- 2.39.5