forked from OSchip/llvm-project
[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:
parent
50f12ade2d
commit
096bd9b293
|
@ -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 { \
|
||||
|
|
|
@ -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) \
|
||||
|
|
Loading…
Reference in New Issue