Skip to content

Commit e99c43c

Browse files
authored
[compiler-rt] [TSan] [Darwin] Fix missing Report() arg in vm layout msg (#160171)
This fixes a typo introduced in #158665.
1 parent d86dac9 commit e99c43c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler-rt/lib/tsan/rtl/tsan_platform_mac.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,8 @@ void InitializePlatformEarly() {
238238
if (IsAddressInMappedRegion(HiAppMemEnd() - 1)) {
239239
Report(
240240
"ThreadSanitizer: Unsupported virtual memory layout: Address %p is "
241-
"already mapped.\n");
241+
"already mapped.\n",
242+
HiAppMemEnd() - 1);
242243
Die();
243244
}
244245
#endif

0 commit comments

Comments
 (0)