From 9b9ee2a616c0387adec21eb78529ad59e032c80c Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Mon, 10 Sep 2012 06:19:43 +0000 Subject: [PATCH] Indent the "message" key in analyzer plist output. llvm-svn: 163487 --- clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp b/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp index 0a534bf7c0a6..7d9c2236f4c5 100644 --- a/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp +++ b/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp @@ -246,6 +246,7 @@ static void ReportEvent(raw_ostream &o, const PathDiagnosticPiece& P, // Output the short text. // FIXME: Really use a short string. Indent(o, indent) << "message\n"; + Indent(o, indent); EmitString(o, P.getString()) << '\n'; // Finish up.