ソースを参照

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

Fixes #5463
Andreas Kling 4 年 前
コミット
bd830c2dfe
1 ファイル変更1 行追加1 行削除
  1. 1 1
      Userland/Libraries/LibCpp/AST.cpp

+ 1 - 1
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);
 }