use FALSE instead of 0

This commit is contained in:
YamaArashi 2016-01-08 01:12:04 -08:00
parent b4781cdf03
commit 8cc19c6b5e

View File

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