[lsan] Minor adjustments to LSan messages.

git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@182648 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/lsan/lsan_common_linux.cc b/lib/lsan/lsan_common_linux.cc
index cafca17..ff7eebf 100644
--- a/lib/lsan/lsan_common_linux.cc
+++ b/lib/lsan/lsan_common_linux.cc
@@ -43,11 +43,11 @@
     return;
   }
   if (num_matches == 0)
-    Report("%s: Dynamic linker not found. TLS will not be handled correctly.\n",
-           SanitizerToolName);
+    Report("LeakSanitizer: Dynamic linker not found. "
+           "TLS will not be handled correctly.\n");
   else if (num_matches > 1)
-    Report("%s: Multiple modules match \"%s\". TLS will not be handled "
-           "correctly.\n", SanitizerToolName, kLinkerName);
+    Report("LeakSanitizer: Multiple modules match \"%s\". "
+           "TLS will not be handled correctly.\n", kLinkerName);
   linker = 0;
 }