diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2025-06-14 13:51:36 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2025-06-15 12:34:15 -0400 |
| commit | aaeae8bc7d9ee5397373faf967775f25b06e260a (patch) | |
| tree | ef98a8d9c167c3938430640e35a444fc1f817455 | |
| parent | 47a54dd11aea12c72937207508b9c70a1b92f32c (diff) | |
mem: Remove trailing whitespace
| -rw-r--r-- | core/mem/allocators.odin | 2 |
1 files changed, 1 insertions, 1 deletions
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( |