[sanitizer] Fix typo in log messages

Fix typo in log messages

Reviewed By: vitalybuka

Differential Revision: https://reviews.llvm.org/D91492
This commit is contained in:
Seonghyun Park 2020-11-18 03:40:45 -08:00 committed by Vitaly Buka
parent 50f12ade2d
commit 096bd9b293
2 changed files with 8 additions and 8 deletions

View File

@ -137,7 +137,7 @@ DECLARE_REAL(char*, strstr, const char *s1, const char *s2)
#define ASAN_INTERCEPT_FUNC(name) \
do { \
if (!INTERCEPT_FUNCTION(name)) \
VReport(1, "AddressSanitizer: failed to intercept '%s'\n'", #name); \
VReport(1, "AddressSanitizer: failed to intercept '%s'\n", #name); \
} while (0)
#define ASAN_INTERCEPT_FUNC_VER(name, ver) \
do { \

View File

@ -1248,7 +1248,7 @@ int OnExit() {
#define MSAN_INTERCEPT_FUNC(name) \
do { \
if (!INTERCEPT_FUNCTION(name)) \
VReport(1, "MemorySanitizer: failed to intercept '%s'\n'", #name); \
VReport(1, "MemorySanitizer: failed to intercept '%s'\n", #name); \
} while (0)
#define MSAN_INTERCEPT_FUNC_VER(name, ver) \