diff options
Diffstat (limited to 'src/malloc.c')
-rw-r--r-- | src/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/malloc.c b/src/malloc.c index 8bfaf5ef0..c93e096c2 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -135,7 +135,7 @@ void *AllocZeroedInternal(void *heapStart, u32 size) if (size & 3) size = 4 * ((size / 4) + 1); - CpuFill32(mem, 0, size); + CpuFill32(0, mem, size); } return mem; |