diff --git a/src/allocator/linked_list.rs b/src/allocator/linked_list.rs index 68c77ab3..e0be7007 100644 --- a/src/allocator/linked_list.rs +++ b/src/allocator/linked_list.rs @@ -8,10 +8,7 @@ struct ListNode { impl ListNode { const fn new(size: usize) -> Self { - ListNode { - size, - next: None, - } + ListNode { size, next: None } } fn start_addr(&self) -> usize {