diff options
Diffstat (limited to 'c')
-rw-r--r-- | c/src/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/malloc.c b/c/src/malloc.c index e104df880..1b741257b 100644 --- a/c/src/malloc.c +++ b/c/src/malloc.c @@ -6,7 +6,7 @@ extern u32 gHeapSize; #define MALLOC_SYSTEM_ID 0xA3A3 struct MemBlock { - u16 flag; + bool16 flag; u16 magic; u32 size; struct MemBlock *prev; |