From cc735821b56dce6a6107e07ba08892103a676f8f Mon Sep 17 00:00:00 2001 From: Kirill Stoimenov Date: Thu, 14 Sep 2023 00:00:53 +0000 Subject: [PATCH] [LSAN][NFC] Add a new line to a log --- 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 9b73ddbdc756ff..7f0fccba421795 100644 --- a/compiler-rt/lib/lsan/lsan_common.cpp +++ b/compiler-rt/lib/lsan/lsan_common.cpp @@ -759,7 +759,7 @@ 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");