From 41dd12d62f43160bc8d8574127d0c2b861e1ee1d Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sun, 25 Nov 2018 09:56:06 -0700 Subject: [PATCH] options: fix 'kb_base' being of the wrong type Signed-off-by: Jens Axboe --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index cf087edd..7a7006c1 100644 --- a/options.c +++ b/options.c @@ -4530,7 +4530,7 @@ struct fio_option fio_options[FIO_MAX_OPTS] = { { .name = "kb_base", .lname = "KB Base", - .type = FIO_OPT_INT, + .type = FIO_OPT_STR, .off1 = offsetof(struct thread_options, kb_base), .prio = 1, .def = "1024", -- 2.25.1