Skip to content

Commit 453d373

Browse files
committed
[lsan] Add a few "\n" missing from VReport
1 parent 99c8557 commit 453d373

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler-rt/lib/lsan/lsan_common.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -780,10 +780,10 @@ static bool PrintResults(LeakReport &report) {
780780

781781
static bool CheckForLeaks() {
782782
if (&__lsan_is_turned_off && __lsan_is_turned_off()) {
783-
VReport(1, "LeakSanitizer is disabled");
783+
VReport(1, "LeakSanitizer is disabled\n");
784784
return false;
785785
}
786-
VReport(1, "LeakSanitizer: checking for leaks");
786+
VReport(1, "LeakSanitizer: checking for leaks\n");
787787
// Inside LockStuffAndStopTheWorld we can't run symbolizer, so we can't match
788788
// suppressions. However if a stack id was previously suppressed, it should be
789789
// suppressed in future checks as well.

0 commit comments

Comments
 (0)