aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-10-27 18:51:51 +0000
committergingerBill <gingerBill@users.noreply.github.com>2025-10-27 18:51:51 +0000
commita20c09158aabda90bfb2b66bd3350b3c1178b03a (patch)
tree7745883370888cd38ff3efd4b00d24d96d8ef37c /core
parentd9d7711ca4cf3fb94f4606e91f052fdb7ca885a3 (diff)
Fix indentation
Diffstat (limited to 'core')
-rw-r--r--core/mem/allocators.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/mem/allocators.odin b/core/mem/allocators.odin
index 5b0b178f8..eea7a5b4f 100644
--- a/core/mem/allocators.odin
+++ b/core/mem/allocators.odin
@@ -99,8 +99,8 @@ panic_allocator :: proc() -> Allocator {
panic_allocator_proc :: proc(
allocator_data: rawptr,
mode: Allocator_Mode,
- size, alignment: int,
- old_memory: rawptr,
+ size, alignment: int,
+ old_memory: rawptr,
old_size: int,
loc := #caller_location,
) -> ([]byte, Allocator_Error) {