"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 <bhubbard@redhat.com>
<< "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