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

PhysicalPage: Use dbg() instead of dbgprintf()

This commit is contained in:
Liav A 2020-02-24 16:42:36 +02:00 committed by Andreas Kling
parent 24d2aeda8e
commit 3f2d5f2774

View file

@ -56,7 +56,7 @@ void PhysicalPage::return_to_freelist() &&
MM.deallocate_user_physical_page(move(*this));
#ifdef MM_DEBUG
dbgprintf("MM: P%x released to freelist\n", m_paddr.get());
dbg() << "MM: P" << String::format("%x", m_paddr.get()) << " released to freelist";
#endif
}