summaryrefslogtreecommitdiff
path: root/soh/src/code/debug_malloc.c
diff options
context:
space:
mode:
authorPepe20129 <72659707+Pepe20129@users.noreply.github.com>2024-11-12 01:46:25 +0100
committerGitHub <noreply@github.com>2024-11-11 17:46:25 -0700
commitffc132a01bc73e8e7eea826dcdfc07b742abbe12 (patch)
tree2e2eae75d11d78ba1a33be5e0c655e0bd6adf6cd /soh/src/code/debug_malloc.c
parentf12a2bbbb7f6201a0bc8787d23cd446a1a2b4d48 (diff)
Clean `__osMalloc.c` (#4351)
* Remove #ifs * Add `NODE_IS_VALID` * Fix current macros * `NODE_GET_NEXT` & `NODE_GET_PREV` * Add macros * Use macros and general cleanup * Fix build (hopefully) * Address review
Diffstat (limited to 'soh/src/code/debug_malloc.c')
-rw-r--r--soh/src/code/debug_malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/src/code/debug_malloc.c b/soh/src/code/debug_malloc.c
index c1c4f99d0..396e4086d 100644
--- a/soh/src/code/debug_malloc.c
+++ b/soh/src/code/debug_malloc.c
@@ -109,5 +109,5 @@ void DebugArena_Cleanup(void) {
}
u8 DebugArena_IsInitalized(void) {
- return __osMallocIsInitalized(&sDebugArena);
+ return __osMallocIsInitialized(&sDebugArena);
}