|
From: Julian S. <se...@so...> - 2019-02-02 13:23:51
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=7094b51f0a22f7f264732a2bfc840b00b74a7c23 commit 7094b51f0a22f7f264732a2bfc840b00b74a7c23 Author: Julian Seward <js...@ac...> Date: Sat Feb 2 14:22:43 2019 +0100 Another -Wformat-signedness fix that was missed in dee1c5ac841ef11151ddf92b1ca98be7041f0785. Diff: --- coregrind/m_gdbserver/remote-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_gdbserver/remote-utils.c b/coregrind/m_gdbserver/remote-utils.c index 2d4320c..2d13b79 100644 --- a/coregrind/m_gdbserver/remote-utils.c +++ b/coregrind/m_gdbserver/remote-utils.c @@ -1158,7 +1158,7 @@ void prepare_resume_reply (char *buf, char status, unsigned char sig) VG_(sprintf) (buf, "%s:%x;", valgrind_stopped_before_syscall () ? "syscall_entry" : "syscall_return", - valgrind_stopped_by_syscall ()); + (UInt)valgrind_stopped_by_syscall ()); buf += strlen (buf); } |