From 548e2339666dc6892300b8bfbcd6f7ba191c0dcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= Date: Sat, 2 May 2026 18:30:22 +0200 Subject: [PATCH] Fix wrong semicolon Move into else branch, otherwise there are two semicolon in the if branch. Found by Clang 22 (pedantic). --- src/extent.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/extent.c b/src/extent.c index af5ed47e..cf935c18 100644 --- a/src/extent.c +++ b/src/extent.c @@ -17,9 +17,8 @@ size_t opt_process_madvise_max_batch = #ifdef JEMALLOC_HAVE_PROCESS_MADVISE PROCESS_MADVISE_MAX_BATCH_DEFAULT; #else - 0 + 0; #endif -; static bool extent_commit_impl(tsdn_t *tsdn, ehooks_t *ehooks, edata_t *edata, size_t offset, size_t length, bool growing_retained);