Skip to content

Commit c0e7f64

Browse files
committed
[NFC][gotsan] Fix 'format' error
1 parent e259f7b commit c0e7f64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ PtraceRegistersStatus SuspendedThreadsListLinux::GetRegistersAndSP(
560560
&pterrno);
561561
if (fail) {
562562
VReport(1, "Could not get regset %p from thread %d (errno %d).\n",
563-
regset, tid, pterrno);
563+
(void *)regset, tid, pterrno);
564564
buffer->resize(size);
565565
return false;
566566
}

0 commit comments

Comments
 (0)