From: Jens Axboe Date: Sun, 25 Nov 2018 16:56:06 +0000 (-0700) Subject: options: fix 'kb_base' being of the wrong type X-Git-Tag: fio-3.13~100 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=41dd12d62f43160bc8d8574127d0c2b861e1ee1d options: fix 'kb_base' being of the wrong type Signed-off-by: Jens Axboe --- 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",