mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-22 04:03:11 +00:00
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:
committed by
Guangli Dai
parent
5acdcee600
commit
548e233966
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user