mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-08 08:38:51 +00:00
Improve formatting
This commit is contained in:
@@ -2048,7 +2048,7 @@ buddy_block_find_best :: proc(head, tail: ^Buddy_Block, size: uint) -> ^Buddy_Bl
|
||||
// to pick the buddy as it "bounces around" less
|
||||
best_block = buddy
|
||||
}
|
||||
if (block.size <= buddy.size) {
|
||||
if block.size <= buddy.size {
|
||||
block = buddy_block_next(buddy)
|
||||
if (block < tail) {
|
||||
// Delay the buddy block for the next iteration
|
||||
|
||||
Reference in New Issue
Block a user