From 98c1886b38cd445373134151b7b8e63d142a1ac8 Mon Sep 17 00:00:00 2001 From: Kirill Stoimenov Date: Wed, 13 Sep 2023 23:09:22 +0000 Subject: [PATCH] [LSAN][NFC] Add a new line in leak sanitizer message --- compiler-rt/lib/lsan/lsan_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/lsan/lsan_common.cpp b/compiler-rt/lib/lsan/lsan_common.cpp index 9b73ddbdc756f..fcf765bd03ea7 100644 --- a/compiler-rt/lib/lsan/lsan_common.cpp +++ b/compiler-rt/lib/lsan/lsan_common.cpp @@ -762,7 +762,7 @@ static bool CheckForLeaks() { VReport(1, "LeakSanitizer is disabled"); 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.