From c7e01d28b4b08e07e4882159f2ba6d4b7d9691fb Mon Sep 17 00:00:00 2001 From: Paul Floyd Date: Sun, 26 Mar 2023 18:21:42 +0200 Subject: [PATCH] Solaris: improve syscall trace for sysfs More than just fix the format warning --- 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: -- 2.47.2