tsan: add missing \n in report
authorDmitry Vyukov <dvyukov@google.com>
Thu, 22 Nov 2012 13:38:28 +0000 (13:38 +0000)
committerDmitry Vyukov <dvyukov@google.com>
Thu, 22 Nov 2012 13:38:28 +0000 (13:38 +0000)
llvm-svn: 168496

compiler-rt/lib/tsan/rtl/tsan_report.cc

index 21f1c1e..6d8b448 100644 (file)
@@ -51,7 +51,7 @@ static void PrintHeader(ReportType typ) {
 
 void PrintStack(const ReportStack *ent) {
   if (ent == 0) {
-    Printf("    [failed to restore the stack]\n");
+    Printf("    [failed to restore the stack]\n\n");
     return;
   }
   for (int i = 0; ent; ent = ent->next, i++) {