From b6eb8dde6be32e394a4420dfeb671b5891a87c8b Mon Sep 17 00:00:00 2001 From: Tomas Vondra Date: Wed, 11 Mar 2026 15:14:46 +0100 Subject: [PATCH] Fix indentation from commit 29a0fb21577 Per buildfarm animal koel --- src/backend/storage/aio/method_worker.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/storage/aio/method_worker.c b/src/backend/storage/aio/method_worker.c index c1f99cdc25b..efe38e9f113 100644 --- a/src/backend/storage/aio/method_worker.c +++ b/src/backend/storage/aio/method_worker.c @@ -257,9 +257,9 @@ pgaio_worker_submit_internal(int num_staged_ios, PgAioHandle **staged_ios) if (!pgaio_worker_submission_queue_insert(staged_ios[i])) { /* - * Do the rest synchronously. If the queue is full, give up and - * do the rest synchronously. We're holding an exclusive lock - * on the queue so nothing can consume entries. + * Do the rest synchronously. If the queue is full, give up + * and do the rest synchronously. We're holding an exclusive + * lock on the queue so nothing can consume entries. */ synchronous_ios = &staged_ios[i]; nsync = (num_staged_ios - i);