Fix wrong semicolon

Move into else branch, otherwise there are two semicolon in the
if branch.
Found by Clang 22 (pedantic).
This commit is contained in:
Christoph Grüninger
2026-05-02 18:30:22 +02:00
committed by Guangli Dai
parent 5acdcee600
commit 548e233966

View File

@@ -17,9 +17,8 @@ size_t opt_process_madvise_max_batch =
#ifdef JEMALLOC_HAVE_PROCESS_MADVISE #ifdef JEMALLOC_HAVE_PROCESS_MADVISE
PROCESS_MADVISE_MAX_BATCH_DEFAULT; PROCESS_MADVISE_MAX_BATCH_DEFAULT;
#else #else
0 0;
#endif #endif
;
static bool extent_commit_impl(tsdn_t *tsdn, ehooks_t *ehooks, edata_t *edata, static bool extent_commit_impl(tsdn_t *tsdn, ehooks_t *ehooks, edata_t *edata,
size_t offset, size_t length, bool growing_retained); size_t offset, size_t length, bool growing_retained);