diff options
author | YamaArashi <shadow962@live.com> | 2016-01-08 01:12:04 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-01-08 01:12:04 -0800 |
commit | 8cc19c6b5e6f10dc4b07b30c0b0a0fb8bd0aabbc (patch) | |
tree | 6b09d6a66cf52119d6c6bb67bc8b0d6d1afe7ad4 | |
parent | b4781cdf03fc43946b0e9f0686bce58083fe84cd (diff) |
use FALSE instead of 0
-rw-r--r-- | src/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/malloc.c b/src/malloc.c index 2ca41b81a..49f940b7b 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -29,7 +29,7 @@ void PutMemBlockHeader(void *block, struct MemBlock *prev, struct MemBlock *next { struct MemBlock *header = (struct MemBlock *)block; - header->flag = 0; + header->flag = FALSE; header->magic = MALLOC_SYSTEM_ID; header->size = size; header->prev = prev; |