From 731e3f7882e286742af32866cf2dcac1ba9d6a38 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 12 Oct 2011 16:07:30 +0200 Subject: [PATCH] Fix clat percentile display Signed-off-by: Jens Axboe --- stat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stat.c b/stat.c index c2705d26..72b84be8 100644 --- a/stat.c +++ b/stat.c @@ -150,8 +150,8 @@ static void show_clat_percentiles(unsigned int *io_u_plat, unsigned long nr, /* end of the list */ is_last = (j == len - 1); - log_info(" %2.2fth=%u%c", plist[j], plat_idx_to_val(i), - (is_last? '\n' : ',')); + log_info(" %2.2fth=%u%c", plist[j].u.f, + plat_idx_to_val(i), (is_last? '\n' : ',')); if (is_last) break; -- 2.25.1