1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +00:00

LibCpp: Fix yet another broken outln() invocation..

Fixes #5463
This commit is contained in:
Andreas Kling 2021-02-21 22:12:40 +01:00
parent 4166765292
commit bd830c2dfe

View file

@ -217,7 +217,7 @@ void AssignmentExpression::dump(size_t indent) const
m_lhs->dump(indent + 1);
print_indent(indent + 1);
ASSERT(op_string);
outln("{}");
outln("{}", op_string);
m_rhs->dump(indent + 1);
}