1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:17:44 +00:00

Kernel: Display virtual addresses as V%p instead of L%x

The L was a leftover from when these were called linear addresses.
This commit is contained in:
Andreas Kling 2019-08-23 16:18:27 +02:00
parent 3439a479af
commit e29fd3cd20
8 changed files with 19 additions and 19 deletions

View file

@ -34,7 +34,7 @@ KResultOr<Region*> MBVGADevice::mmap(Process& process, FileDescription&, Virtual
0,
"MBVGA Framebuffer",
prot);
kprintf("MBVGA: %s(%u) created Region{%p} with size %u for framebuffer P%x with vaddr L%x\n",
kprintf("MBVGA: %s(%u) created Region{%p} with size %u for framebuffer P%x with vaddr V%p\n",
process.name().characters(), process.pid(),
region, region->size(), m_framebuffer_address.as_ptr(), region->vaddr().get());
ASSERT(region);