mem: Remove trailing whitespace

This commit is contained in:
Feoramund
2025-06-14 13:51:36 -04:00
parent 47a54dd11a
commit aaeae8bc7d

View File

@@ -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(