From 79baa20eb6a529e85cf615a1077d0ba1d71c71c8 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Sun, 25 Oct 2020 22:20:29 +0200 Subject: [PATCH] Adjust indentation in debug output --- nucleus/src/mm/bump_allocator.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nucleus/src/mm/bump_allocator.rs b/nucleus/src/mm/bump_allocator.rs index 6df157c..81a4983 100644 --- a/nucleus/src/mm/bump_allocator.rs +++ b/nucleus/src/mm/bump_allocator.rs @@ -27,7 +27,7 @@ unsafe impl AllocRef for BumpAllocator { let end = start + layout.size(); println!( - "[i] {}:\n Allocating Start {:#010x} End {:#010x}", + "[i] {}:\n Allocating Start {:#010x} End {:#010x}", self.name, start, end ); @@ -37,7 +37,7 @@ unsafe impl AllocRef for BumpAllocator { self.next.set(end); println!( - "[i] {}:\n Allocated Addr {:#010x} Size {:#x}", + "[i] {}:\n Allocated Addr {:#010x} Size {:#x}", self.name, start, layout.size()