summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clang/lib/AST/StmtDumper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/StmtDumper.cpp b/clang/lib/AST/StmtDumper.cpp
index 028e762bb0b..a710e233af7 100644
--- a/clang/lib/AST/StmtDumper.cpp
+++ b/clang/lib/AST/StmtDumper.cpp
@@ -258,7 +258,7 @@ void StmtDumper::VisitDeclStmt(DeclStmt *Node) {
void StmtDumper::VisitLabelStmt(LabelStmt *Node) {
DumpStmt(Node);
- fprintf(F, " '%s'\n", Node->getName());
+ fprintf(F, " '%s'", Node->getName());
}
void StmtDumper::VisitGotoStmt(GotoStmt *Node) {
OpenPOWER on IntegriCloud