1
Fork 0
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:
Andreas Kling 2019-08-17 21:29:46 +02:00
parent ad909e7c3f
commit 272bd1d3ef
2 changed files with 8 additions and 8 deletions

View file

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