|
From: Paul F. <pa...@so...> - 2023-03-26 16:23:26
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=c7e01d28b4b08e07e4882159f2ba6d4b7d9691fb commit c7e01d28b4b08e07e4882159f2ba6d4b7d9691fb Author: Paul Floyd <pj...@wa...> Date: Sun Mar 26 18:21:42 2023 +0200 Solaris: improve syscall trace for sysfs More than just fix the format warning Diff: --- coregrind/m_syswrap/syswrap-solaris.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_syswrap/syswrap-solaris.c b/coregrind/m_syswrap/syswrap-solaris.c index 944b5036c9..8a2a140f95 100644 --- a/coregrind/m_syswrap/syswrap-solaris.c +++ b/coregrind/m_syswrap/syswrap-solaris.c @@ -4681,7 +4681,7 @@ POST(sys_ucredsys) PRE(sys_sysfs) { /* Kernel: int sysfs(int opcode, long a1, long a2); */ - PRINT("sys_sysfs ( %ld, %ld, %lu )", SARG1, SARG2, ARG3); + PRINT("sys_sysfs ( %ld, %ld, %ld )", SARG1, SARG2, SARG3); switch (ARG1 /*opcode*/) { case VKI_GETFSIND: |