summaryrefslogtreecommitdiff
path: root/Kernel/Heap
diff options
context:
space:
mode:
authorasynts <asynts@gmail.com>2021-01-10 15:17:54 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-11 11:55:47 +0100
commitdca6f1f49b30b462d37440092e50a1a381b7cd2a (patch)
tree0822c3c3edaaf626a3f6a7e6e16c81df1a06aaa0 /Kernel/Heap
parent872f2a3b90852c5211e68e7c73f871585576a3f8 (diff)
downloadserenity-dca6f1f49b30b462d37440092e50a1a381b7cd2a.zip
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.Everything:
Diffstat (limited to 'Kernel/Heap')
-rw-r--r--Kernel/Heap/kmalloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Heap/kmalloc.cpp b/Kernel/Heap/kmalloc.cpp
index 4c121ce164..934fac1a64 100644
--- a/Kernel/Heap/kmalloc.cpp
+++ b/Kernel/Heap/kmalloc.cpp
@@ -242,7 +242,7 @@ void* kmalloc_impl(size_t size)
++g_kmalloc_call_count;
if (g_dump_kmalloc_stacks && Kernel::g_kernel_symbols_available) {
- dbg() << "kmalloc(" << size << ")";
+ dbgln("kmalloc({})", size);
Kernel::dump_backtrace();
}