From b6e525d9359fae00fe524f4dd6eea479835c5ab3 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Tue, 10 Sep 2013 21:50:27 -0500 Subject: [PATCH] Add missing closing " for string constants in AST dumps --- src/zscript/ast.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/zscript/ast.cpp b/src/zscript/ast.cpp index b316208e9..1cd25e561 100644 --- a/src/zscript/ast.cpp +++ b/src/zscript/ast.cpp @@ -267,6 +267,7 @@ static void PrintStringConst(FLispString &out, FString str) outstr.AppendFormat("\\x%02X", str[i]); } } + outstr << '"'; out.Add(outstr); }