From: Jens Axboe Date: Wed, 10 Jan 2007 19:30:53 +0000 (+0100) Subject: [PATCH] Thread option didn't work X-Git-Tag: fio-1.12~167 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=d9bb3b809d80cc3226d1c603e87fc90b6680320b;p=fio.git [PATCH] Thread option didn't work We stored to the wrong location, woops. Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 79b6e5cb..559ebc15 100644 --- a/init.c +++ b/init.c @@ -413,7 +413,7 @@ static struct fio_option options[] = { { .name = "thread", .type = FIO_OPT_STR_SET, - .off1 = td_var_offset(thread), + .off1 = td_var_offset(use_thread), .help = "Use threads instead of forks", }, {