1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:28:11 +00:00

LibJS: Fix broken dbgln_if(HEAP_DEBUG)

This commit is contained in:
Andreas Kling 2021-05-25 19:44:32 +02:00
parent e6f8a5111f
commit cfe3895991

View file

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