From d59d31aff657005e63b48807230bbe42b464e537 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Tue, 6 Mar 2007 15:32:33 +0100 Subject: [PATCH] td vs ts typo Signed-off-by: Jens Axboe --- stat.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/stat.c b/stat.c index ccab0c70..5470c87f 100644 --- a/stat.c +++ b/stat.c @@ -6,7 +6,6 @@ #include #include #include -#include #include "fio.h" @@ -720,9 +719,9 @@ void show_run_stats(void) rbw = wbw = 0; if (ts->runtime[0]) - rbw = td->io_bytes[0] / (unsigned long long) ts->runtime[0]; + rbw = ts->io_bytes[0] / (unsigned long long) ts->runtime[0]; if (ts->runtime[1]) - wbw = td->io_bytes[1] / (unsigned long long) ts->runtime[1]; + wbw = ts->io_bytes[1] / (unsigned long long) ts->runtime[1]; if (rbw < rs->min_bw[0]) rs->min_bw[0] = rbw; -- 2.25.1