Heap kmalloc: Use dbg() instead of dbgprintf()

This commit is contained in:
Liav A 2020-02-25 01:02:52 +02:00 committed by Andreas Kling
parent ac9a001b92
commit 46a7ee97ac
Notes: sideshowbarker 2024-07-19 09:00:20 +09:00

View File

@ -116,7 +116,7 @@ void* kmalloc_impl(size_t size)
++g_kmalloc_call_count;
if (g_dump_kmalloc_stacks && Kernel::ksyms_ready) {
dbgprintf("kmalloc(%u)\n", size);
dbg() << "kmalloc(" << size << ")";
Kernel::dump_backtrace();
}