From aaeae8bc7d9ee5397373faf967775f25b06e260a Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Sat, 14 Jun 2025 13:51:36 -0400 Subject: [PATCH] mem: Remove trailing whitespace --- core/mem/allocators.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/mem/allocators.odin b/core/mem/allocators.odin index d4f06f1af..94104180b 100644 --- a/core/mem/allocators.odin +++ b/core/mem/allocators.odin @@ -2327,7 +2327,7 @@ buddy_allocator_free_all :: proc(b: ^Buddy_Allocator) { head := ([^]byte)(b.head) tail := ([^]byte)(b.tail) data := head[:ptr_sub(tail, head)] - buddy_allocator_init(b, data, alignment) + buddy_allocator_init(b, data, alignment) } buddy_allocator_proc :: proc(