summaryrefslogtreecommitdiff
path: root/src/code/z_malloc.c
diff options
context:
space:
mode:
authorhatal175 <hatal175@users.noreply.github.com>2022-01-31 11:36:58 +0200
committerGitHub <noreply@github.com>2022-01-31 18:36:58 +0900
commitaecd883bbce3963f9c7c81dc17cc701172764499 (patch)
treedbd5328d7de7adbbecb834c7b1de75215374de6f /src/code/z_malloc.c
parent82cedcc3ef96ddb58848b049edf69a08e3e66cbf (diff)
Document some z_actor.c functions (#1091)
Diffstat (limited to 'src/code/z_malloc.c')
-rw-r--r--src/code/z_malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_malloc.c b/src/code/z_malloc.c
index f9fa2f310..109462722 100644
--- a/src/code/z_malloc.c
+++ b/src/code/z_malloc.c
@@ -77,7 +77,7 @@ void* ZeldaArena_Calloc(u32 num, u32 size) {
bzero(ret, n);
}
- ZeldaArena_CheckPointer(ret, n, "zelda_calloc", "確保");
+ ZeldaArena_CheckPointer(ret, n, "zelda_calloc", "確保"); // "Secure"
return ret;
}