From 50fb95602430079bfce17b28da256014caa052c0 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Sun, 3 Jan 2016 06:46:11 -0800 Subject: [PATCH] update struct field type --- c/src/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/src/malloc.c b/c/src/malloc.c index e104df8804..1b741257bd 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;