From 7094b51f0a22f7f264732a2bfc840b00b74a7c23 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Sat, 2 Feb 2019 14:22:43 +0100 Subject: [PATCH] Another -Wformat-signedness fix that was missed in dee1c5ac841ef11151ddf92b1ca98be7041f0785. --- 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 2d4320c9c1..2d13b79f3d 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); } -- 2.47.2