mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48: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
|
// to pick the buddy as it "bounces around" less
|
||||||
best_block = buddy
|
best_block = buddy
|
||||||
}
|
}
|
||||||
if (block.size <= buddy.size) {
|
if block.size <= buddy.size {
|
||||||
block = buddy_block_next(buddy)
|
block = buddy_block_next(buddy)
|
||||||
if (block < tail) {
|
if (block < tail) {
|
||||||
// Delay the buddy block for the next iteration
|
// Delay the buddy block for the next iteration
|
||||||
|
|||||||
Reference in New Issue
Block a user