From: Jens Axboe Date: Tue, 12 Jun 2018 14:51:07 +0000 (-0600) Subject: init: use o-> instead of td->o X-Git-Tag: fio-3.8~33 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=5630eccf1e7336095804ee635504dc333c4d519f init: use o-> instead of td->o We already have the options pointer, just use it. Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 02793dd8..353c99bd 100644 --- a/init.c +++ b/init.c @@ -672,8 +672,8 @@ static int fixup_options(struct thread_data *td) if (!o->start_delay_orig) o->start_delay_orig = o->start_delay; o->start_delay = rand_between(&td->delay_state, - td->o.start_delay_orig, - td->o.start_delay_high); + o->start_delay_orig, + o->start_delay_high); } if (o->norandommap && o->verify != VERIFY_NONE