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

PageDirectory: Use dbg() instead of dbgprintf()

This commit is contained in:
Liav A 2020-02-24 15:19:28 +02:00 committed by Andreas Kling
parent 2b9826a444
commit 62adbbc598

View file

@ -114,7 +114,7 @@ PageDirectory::PageDirectory(Process& process, const RangeAllocator* parent_rang
PageDirectory::~PageDirectory()
{
#ifdef MM_DEBUG
dbgprintf("MM: ~PageDirectory K%x\n", this);
dbg() << "MM: ~PageDirectory K" << this;
#endif
InterruptDisabler disabler;
cr3_map().remove(cr3());