mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
Heap kmalloc: Use dbg() instead of dbgprintf()
This commit is contained in:
parent
ac9a001b92
commit
46a7ee97ac
Notes:
sideshowbarker
2024-07-19 09:00:20 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/46a7ee97ac0 Pull-request: https://github.com/SerenityOS/serenity/pull/1290
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue