From 5c298c150104553dab4e8b18adb0b39cf278a471 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 15 Aug 2022 10:22:32 +0100 Subject: [PATCH] Minor text alignment --- core/mem/virtual/growing_arena.odin | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/mem/virtual/growing_arena.odin b/core/mem/virtual/growing_arena.odin index f7f32b48e..f1067071b 100644 --- a/core/mem/virtual/growing_arena.odin +++ b/core/mem/virtual/growing_arena.odin @@ -102,9 +102,9 @@ growing_arena_allocator :: proc(arena: ^Growing_Arena) -> mem.Allocator { } growing_arena_allocator_proc :: proc(allocator_data: rawptr, mode: mem.Allocator_Mode, - size, alignment: int, - old_memory: rawptr, old_size: int, - location := #caller_location) -> (data: []byte, err: Allocator_Error) { + size, alignment: int, + old_memory: rawptr, old_size: int, + location := #caller_location) -> (data: []byte, err: Allocator_Error) { arena := (^Growing_Arena)(allocator_data) switch mode {