From 3f2d5f2774c239978dc7545c3c1787e6720f288b Mon Sep 17 00:00:00 2001 From: Liav A Date: Mon, 24 Feb 2020 16:42:36 +0200 Subject: [PATCH] PhysicalPage: Use dbg() instead of dbgprintf() --- Kernel/VM/PhysicalPage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/VM/PhysicalPage.cpp b/Kernel/VM/PhysicalPage.cpp index d2b67c1357..36cc3d5015 100644 --- a/Kernel/VM/PhysicalPage.cpp +++ b/Kernel/VM/PhysicalPage.cpp @@ -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 }