diff --git a/compiler-rt/lib/lsan/lsan_common.cpp b/compiler-rt/lib/lsan/lsan_common.cpp index 9b73ddbdc756ff..9b332bc81c42e6 100644 --- a/compiler-rt/lib/lsan/lsan_common.cpp +++ b/compiler-rt/lib/lsan/lsan_common.cpp @@ -759,10 +759,10 @@ static bool PrintResults(LeakReport &report) { static bool CheckForLeaks() { if (&__lsan_is_turned_off && __lsan_is_turned_off()) { - VReport(1, "LeakSanitizer is disabled"); + VReport(1, "LeakSanitizer is disabled\n"); return false; } - VReport(1, "LeakSanitizer: checking for leaks"); + VReport(1, "LeakSanitizer: checking for leaks\n"); // Inside LockStuffAndStopTheWorld we can't run symbolizer, so we can't match // suppressions. However if a stack id was previously suppressed, it should be // suppressed in future checks as well.