diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2021-09-29 01:53:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-28 19:53:56 -0400 |
| commit | c57c0f13fcd2d83d412641e71de05153c20fd6d3 (patch) | |
| tree | 7adb5722bdab340812f14c562c0d8be8b5d9e87e /src/code/system_malloc.c | |
| parent | 063b4aed0ce33473d0ba79f8dcdda5c2db47a9ce (diff) | |
Format all translation comments like `// "..."` (hopefully all of them) (#986)
* Format all translation comments like `// "..."` (hopefully all of them)
* Move translation comments to before on long lines
Located them with `grep -r src -e '^[^(]*);[ ]*//'`
Regex `osSyncPrintf\([^;]*\n.*//` didn't find more
* Format two more
Diffstat (limited to 'src/code/system_malloc.c')
| -rw-r--r-- | src/code/system_malloc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/code/system_malloc.c b/src/code/system_malloc.c index c0fb70bc2..d9085c12f 100644 --- a/src/code/system_malloc.c +++ b/src/code/system_malloc.c @@ -24,40 +24,40 @@ void SystemArena_CheckPointer(void* ptr, u32 size, const char* name, const char* void* SystemArena_Malloc(u32 size) { void* ptr = __osMalloc(&gSystemArena, size); - SystemArena_CheckPointer(ptr, size, "malloc", "確保"); // Secure + SystemArena_CheckPointer(ptr, size, "malloc", "確保"); // "Secure" return ptr; } void* SystemArena_MallocDebug(u32 size, const char* file, s32 line) { void* ptr = __osMallocDebug(&gSystemArena, size, file, line); - SystemArena_CheckPointer(ptr, size, "malloc_DEBUG", "確保"); // Secure + SystemArena_CheckPointer(ptr, size, "malloc_DEBUG", "確保"); // "Secure" return ptr; } void* SystemArena_MallocR(u32 size) { void* ptr = __osMallocR(&gSystemArena, size); - SystemArena_CheckPointer(ptr, size, "malloc_r", "確保"); // Secure + SystemArena_CheckPointer(ptr, size, "malloc_r", "確保"); // "Secure" return ptr; } void* SystemArena_MallocRDebug(u32 size, const char* file, s32 line) { void* ptr = __osMallocRDebug(&gSystemArena, size, file, line); - SystemArena_CheckPointer(ptr, size, "malloc_r_DEBUG", "確保"); // Secure + SystemArena_CheckPointer(ptr, size, "malloc_r_DEBUG", "確保"); // "Secure" return ptr; } void* SystemArena_Realloc(void* ptr, u32 newSize) { ptr = __osRealloc(&gSystemArena, ptr, newSize); - SystemArena_CheckPointer(ptr, newSize, "realloc", "再確保"); // Re-securing + SystemArena_CheckPointer(ptr, newSize, "realloc", "再確保"); // "Re-securing" return ptr; } void* SystemArena_ReallocDebug(void* ptr, u32 newSize, const char* file, s32 line) { ptr = __osReallocDebug(&gSystemArena, ptr, newSize, file, line); - SystemArena_CheckPointer(ptr, newSize, "realloc_DEBUG", "再確保"); // Re-securing + SystemArena_CheckPointer(ptr, newSize, "realloc_DEBUG", "再確保"); // "Re-securing" return ptr; } |
