1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 16:55:09 +00:00

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

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();
}