forked from OSchip/llvm-project
[lsan][nfc] Add missing newline to VReport
This commit is contained in:
parent
a560eea8bb
commit
b15cf06fb3
|
@ -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(): "
|
||||
|
|
Loading…
Reference in New Issue