mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:58:13 +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:
parent
ad909e7c3f
commit
272bd1d3ef
2 changed files with 8 additions and 8 deletions
|
@ -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(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue