mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-24 00:24:38 +00:00
Kernel: Make crash dumps look aligned once again
This broke with the recent changes to make printf hex fields behave a bit more correctly.
This commit is contained in:
@@ -670,7 +670,7 @@ void Process::dump_regions()
|
||||
kprintf("Process %s(%u) regions:\n", name().characters(), pid());
|
||||
kprintf("BEGIN END SIZE ACCESS NAME\n");
|
||||
for (auto& region : m_regions) {
|
||||
kprintf("%x -- %x %x %c%c%c %s\n",
|
||||
kprintf("%08x -- %08x %08x %c%c%c %s\n",
|
||||
region.vaddr().get(),
|
||||
region.vaddr().offset(region.size() - 1).get(),
|
||||
region.size(),
|
||||
|
||||
Reference in New Issue
Block a user