Adjust indentation in debug output

This commit is contained in:
Berkus Decker 2020-10-25 22:20:29 +02:00
parent 149245f411
commit 79baa20eb6
1 changed files with 2 additions and 2 deletions

View File

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