1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:17:35 +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

@ -50,7 +50,7 @@ PageDirectory::~PageDirectory()
void PageDirectory::flush(VirtualAddress vaddr)
{
#ifdef MM_DEBUG
dbgprintf("MM: Flush page L%x\n", vaddr.get());
dbgprintf("MM: Flush page V%p\n", vaddr.get());
#endif
if (!current)
return;