[lsan][nfc] Add missing newline to VReport

This commit is contained in:
Leonard Grey 2022-07-15 15:44:23 -04:00
parent a560eea8bb
commit b15cf06fb3
1 changed files with 1 additions and 1 deletions

View File

@ -949,7 +949,7 @@ void __lsan_ignore_object(const void *p) {
Lock l(&global_mutex);
IgnoreObjectResult res = IgnoreObjectLocked(p);
if (res == kIgnoreObjectInvalid)
VReport(1, "__lsan_ignore_object(): no heap object found at %p", p);
VReport(1, "__lsan_ignore_object(): no heap object found at %p\n", p);
if (res == kIgnoreObjectAlreadyIgnored)
VReport(1,
"__lsan_ignore_object(): "