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:
parent
3439a479af
commit
e29fd3cd20
8 changed files with 19 additions and 19 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue