From 3c0a8bc2f33ba721a97b459d5b32acbf4460450f Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sat, 10 Feb 2018 14:44:49 -0700 Subject: [PATCH] init: fixup some bad style in previous commit Make it follow the fio coding style. Signed-off-by: Jens Axboe --- init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.c b/init.c index 8861c994..25661bef 100644 --- a/init.c +++ b/init.c @@ -806,10 +806,10 @@ static int fixup_options(struct thread_data *td) * write size */ if (!o->verify_interval || - o->min_bs[DDIR_WRITE] % o->verify_interval || - o->max_bs[DDIR_WRITE] % o->verify_interval) + (o->min_bs[DDIR_WRITE] % o->verify_interval) || + (o->max_bs[DDIR_WRITE] % o->verify_interval)) o->verify_interval = gcd(o->min_bs[DDIR_WRITE], - o->max_bs[DDIR_WRITE]); + o->max_bs[DDIR_WRITE]); } if (o->pre_read) { -- 2.25.1