mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-26 18:47:19 +03:00
Clean up char vs. uint8_t in junk filling code.
Consistently use uint8_t rather than char for junk filling code.
This commit is contained in:
parent
c6a2c39404
commit
96aa67aca8
3 changed files with 19 additions and 17 deletions
|
|
@ -41,8 +41,8 @@
|
|||
#define MALLOC_PRINTF_BUFSIZE 4096
|
||||
|
||||
/* Junk fill patterns. */
|
||||
#define JEMALLOC_ALLOC_JUNK 0xa5
|
||||
#define JEMALLOC_FREE_JUNK 0x5a
|
||||
#define JEMALLOC_ALLOC_JUNK ((uint8_t)0xa5)
|
||||
#define JEMALLOC_FREE_JUNK ((uint8_t)0x5a)
|
||||
|
||||
/*
|
||||
* Wrap a cpp argument that contains commas such that it isn't broken up into
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue