diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-25 19:44:32 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-25 19:44:32 +0200 |
commit | cfe3895991bb812ebc23cbb47ed96a8ac1d1b49f (patch) | |
tree | 85e6d8d9627d71fcc509b05cf53245e0a4009e97 /Userland/Libraries | |
parent | e6f8a5111f51c9ca4aa8c25681a79117f97b9d1f (diff) | |
download | serenity-cfe3895991bb812ebc23cbb47ed96a8ac1d1b49f.zip |
LibJS: Fix broken dbgln_if(HEAP_DEBUG)
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibJS/Heap/Heap.cpp | 2 |
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); } |