Adjust indentation in debug output
This commit is contained in:
parent
149245f411
commit
79baa20eb6
|
@ -27,7 +27,7 @@ unsafe impl AllocRef for BumpAllocator {
|
||||||
let end = start + layout.size();
|
let end = start + layout.size();
|
||||||
|
|
||||||
println!(
|
println!(
|
||||||
"[i] {}:\n Allocating Start {:#010x} End {:#010x}",
|
"[i] {}:\n Allocating Start {:#010x} End {:#010x}",
|
||||||
self.name, start, end
|
self.name, start, end
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ unsafe impl AllocRef for BumpAllocator {
|
||||||
self.next.set(end);
|
self.next.set(end);
|
||||||
|
|
||||||
println!(
|
println!(
|
||||||
"[i] {}:\n Allocated Addr {:#010x} Size {:#x}",
|
"[i] {}:\n Allocated Addr {:#010x} Size {:#x}",
|
||||||
self.name,
|
self.name,
|
||||||
start,
|
start,
|
||||||
layout.size()
|
layout.size()
|
||||||
|
|
Loading…
Reference in New Issue