summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Heap/Heap.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-25 19:44:32 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-25 19:44:32 +0200
commitcfe3895991bb812ebc23cbb47ed96a8ac1d1b49f (patch)
tree85e6d8d9627d71fcc509b05cf53245e0a4009e97 /Userland/Libraries/LibJS/Heap/Heap.cpp
parente6f8a5111f51c9ca4aa8c25681a79117f97b9d1f (diff)
downloadserenity-cfe3895991bb812ebc23cbb47ed96a8ac1d1b49f.zip
LibJS: Fix broken dbgln_if(HEAP_DEBUG)
Diffstat (limited to 'Userland/Libraries/LibJS/Heap/Heap.cpp')
-rw-r--r--Userland/Libraries/LibJS/Heap/Heap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Heap/Heap.cpp b/Userland/Libraries/LibJS/Heap/Heap.cpp
index 58513a5cf5..afeb56e41b 100644
--- a/Userland/Libraries/LibJS/Heap/Heap.cpp
+++ b/Userland/Libraries/LibJS/Heap/Heap.cpp
@@ -159,7 +159,7 @@ public:
{
if (cell.is_marked())
return;
- dbgln_if(HEAP_DEBUG, " ! {}", cell);
+ dbgln_if(HEAP_DEBUG, " ! {}", &cell);
cell.set_marked(true);
cell.visit_edges(*this);
}