From 2d8c2709dc067aabdeab8bc1eea1992d9d802375 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Tue, 4 Apr 2023 09:49:19 -0600 Subject: [PATCH] io_u: fix bad style Fixes: 4ef1562a0135 ("io_u: Fix bad interaction with --openfiles and non-sequential file selection policy") Signed-off-by: Jens Axboe --- io_u.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io_u.c b/io_u.c index ca7ee68f..30265cfb 100644 --- a/io_u.c +++ b/io_u.c @@ -1370,8 +1370,8 @@ static struct fio_file *__get_next_file(struct thread_data *td) if (td->o.file_service_type == FIO_FSERVICE_SEQ) goto out; if (td->file_service_left) { - td->file_service_left--; - goto out; + td->file_service_left--; + goto out; } } -- 2.25.1