From d9bb3b809d80cc3226d1c603e87fc90b6680320b Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 10 Jan 2007 20:30:53 +0100 Subject: [PATCH] [PATCH] Thread option didn't work We stored to the wrong location, woops. Signed-off-by: Jens Axboe --- init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", }, { -- 2.25.1