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:
Jason Evans
2016-04-04 19:55:19 -04:00
parent c6a2c39404
commit 96aa67aca8
3 changed files with 19 additions and 17 deletions

View File

@@ -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