From 6d99d9571c1f71d41b5f76886f6e9147b3e057db Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Mon, 27 Jan 2025 18:48:56 -0500 Subject: [PATCH] Fix indentation --- base/runtime/heap_allocator.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/runtime/heap_allocator.odin b/base/runtime/heap_allocator.odin index 3fa8820a6..2a6029284 100644 --- a/base/runtime/heap_allocator.odin +++ b/base/runtime/heap_allocator.odin @@ -12,8 +12,8 @@ heap_allocator :: proc() -> Allocator { heap_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) {