diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-27 18:51:51 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-27 18:51:51 +0000 |
| commit | a20c09158aabda90bfb2b66bd3350b3c1178b03a (patch) | |
| tree | 7745883370888cd38ff3efd4b00d24d96d8ef37c | |
| parent | d9d7711ca4cf3fb94f4606e91f052fdb7ca885a3 (diff) | |
Fix indentation
| -rw-r--r-- | core/mem/allocators.odin | 4 |
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) { |