Skip to content

Commit 01e92ba

Browse files
committed
fix build
1 parent 4850738 commit 01e92ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/loader/layers/sanitizer/msan/msan_shadow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ uptr MsanShadowMemoryDG2::MemToShadow(uptr Ptr) {
293293
if (Ptr < ShadowBegin) {
294294
return Ptr + (ShadowBegin - 0xffff'8000'0000'0000ULL);
295295
} else {
296-
return Ptr - (0xffff'ffff'ffff'ffffULL - ShadowEnd)
296+
return Ptr - (0xffff'ffff'ffff'ffffULL - ShadowEnd);
297297
}
298298
}
299299

0 commit comments

Comments
 (0)