From fc7b346f4e6d64fe5b4f7d5068f4aa52f212b679 Mon Sep 17 00:00:00 2001 From: Brad Hubbard Date: Sun, 8 May 2016 14:04:25 +1000 Subject: [PATCH] common: obj_bencher.cc add missing ":" "Average IOPS" field in obj_bencher.cc is the only field missing a ":". Make it consistent with other output fields 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 6cb1e1e20bad..0971ec9c0c96 100644 --- a/src/common/obj_bencher.cc +++ b/src/common/obj_bencher.cc @@ -813,7 +813,7 @@ int ObjBencher::seq_read_bench(int seconds_to_run, int num_objects, int concurre << "Read size: " << data.op_size << std::endl << "Object size: " << data.object_size << std::endl << "Bandwidth (MB/sec): " << setprecision(6) << bandwidth << std::endl - << "Average IOPS " << (int)(data.finished/runtime) << std::endl + << "Average IOPS: " << (int)(data.finished/runtime) << std::endl << "Stddev IOPS: " << vec_stddev(data.history.iops) << std::endl << "Max IOPS: " << data.idata.max_iops << std::endl << "Min IOPS: " << data.idata.min_iops << std::endl -- 2.47.3