From: Julian Seward Date: Mon, 25 Feb 2019 10:48:43 +0000 (+0100) Subject: Fix another format string signedness warning, arm64-linux only. n-i-bz. X-Git-Tag: VALGRIND_3_15_0~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85545d9d251a902020391aced8b899e1b9e1dd37;p=thirdparty%2Fvalgrind.git Fix another format string signedness warning, arm64-linux only. n-i-bz. --- diff --git a/coregrind/m_syswrap/syswrap-arm64-linux.c b/coregrind/m_syswrap/syswrap-arm64-linux.c index 650f5b9f0d..290320a9e8 100644 --- a/coregrind/m_syswrap/syswrap-arm64-linux.c +++ b/coregrind/m_syswrap/syswrap-arm64-linux.c @@ -466,7 +466,8 @@ PRE(sys_rt_sigreturn) // space, and we should therefore not check anything it points to. PRE(sys_ptrace) { - PRINT("sys_ptrace ( %ld, %ld, %#lx, %#lx )", ARG1,ARG2,ARG3,ARG4); + PRINT("sys_ptrace ( %ld, %ld, %#lx, %#lx )", + (Word)ARG1,(Word)ARG2,ARG3,ARG4); PRE_REG_READ4(int, "ptrace", long, request, long, pid, long, addr, long, data); switch (ARG1) {