mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-05-13 16:36:21 +03:00
Fixed type error with allocated that caused incorrect printing on 32bit
This commit is contained in:
parent
4b555c11a5
commit
630434bb0a
1 changed files with 1 additions and 1 deletions
|
|
@ -324,7 +324,7 @@ stats_arena_bins_print(emitter_t *emitter, bool mutex, unsigned i,
|
|||
|
||||
COL_HDR(row, size, NULL, right, 20, size)
|
||||
COL_HDR(row, ind, NULL, right, 4, unsigned)
|
||||
COL_HDR(row, allocated, NULL, right, 13, uint64)
|
||||
COL_HDR(row, allocated, NULL, right, 13, size)
|
||||
COL_HDR(row, nmalloc, NULL, right, 13, uint64)
|
||||
COL_HDR(row, nmalloc_ps, "(#/sec)", right, 8, uint64)
|
||||
COL_HDR(row, ndalloc, NULL, right, 13, uint64)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue