From bd830c2dfe8558223d3a625bd3b30b79a5f623d2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 21 Feb 2021 22:12:40 +0100 Subject: [PATCH] LibCpp: Fix yet another broken outln() invocation.. Fixes #5463 --- Userland/Libraries/LibCpp/AST.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibCpp/AST.cpp b/Userland/Libraries/LibCpp/AST.cpp index c8a15cdfe5..48752055d0 100644 --- a/Userland/Libraries/LibCpp/AST.cpp +++ b/Userland/Libraries/LibCpp/AST.cpp @@ -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); }