mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-08-25 08:33:38 +03:00
Convert to uniform style: cond == false --> !cond
This commit is contained in:
parent
ebbd0c91f0
commit
551ebc4364
20 changed files with 111 additions and 115 deletions
|
|
@ -505,7 +505,7 @@ stats_print(void (*write_cb)(void *, const char *), void *cbopaque,
|
|||
ninitialized++;
|
||||
}
|
||||
|
||||
if (ninitialized > 1 || unmerged == false) {
|
||||
if (ninitialized > 1 || !unmerged) {
|
||||
/* Print merged arena stats. */
|
||||
malloc_cprintf(write_cb, cbopaque,
|
||||
"\nMerged arenas stats:\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue