mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-08-24 16:13:38 +03: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:
parent
5acdcee600
commit
548e233966
1 changed files with 1 additions and 2 deletions
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue