From: Jens Axboe Date: Tue, 6 Mar 2007 14:32:33 +0000 (+0100) Subject: td vs ts typo X-Git-Tag: fio-1.14~80 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=d59d31aff657005e63b48807230bbe42b464e537;p=fio.git td vs ts typo Signed-off-by: Jens Axboe --- 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;