summaryrefslogtreecommitdiff
path: root/src/code/system_malloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/code/system_malloc.c')
-rw-r--r--src/code/system_malloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/system_malloc.c b/src/code/system_malloc.c
index 3c75b6065..a9141043d 100644
--- a/src/code/system_malloc.c
+++ b/src/code/system_malloc.c
@@ -10,13 +10,13 @@ Arena gSystemArena;
void SystemArena_CheckPointer(void* ptr, u32 size, const char* name, const char* action) {
if (!ptr) {
if (gSystemArenaLogSeverity >= LOG_SEVERITY_ERROR) {
- //"%s: %u bytes %s failed\n"
+ // "%s: %u bytes %s failed\n"
osSyncPrintf("%s: %u バイトの%sに失敗しました\n", name, size, action);
__osDisplayArena(&gSystemArena);
return;
}
} else if (gSystemArenaLogSeverity >= LOG_SEVERITY_VERBOSE) {
- //"%s: %u bytes %s succeeded\n"
+ // "%s: %u bytes %s succeeded\n"
osSyncPrintf("%s: %u バイトの%sに成功しました\n", name, size, action);
}
}