Skip to content

Commit 56b73f2

Browse files
committed
[msan] Fix compilation broken by invalid conflict resolution
1 parent b12e141 commit 56b73f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/msan/msan_linux.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ static bool ProtectMemoryRange(uptr beg, uptr size, const char *name) {
7474
uptr end = beg + size - 1;
7575
Printf(
7676
"FATAL: MemorySanitizer: Cannot protect memory range %p-%p (%s).\n",
77-
(void *)beg, (void *)end);
77+
(void *)beg, (void *)end, name);
7878
return false;
7979
}
8080
}

0 commit comments

Comments
 (0)