From: Dmitry V. Levin Date: Mon, 16 May 2016 23:34:01 +0000 (+0000) Subject: mips: fix printing of invalid operations argument of sysmips syscall X-Git-Tag: v4.12~127 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29c845ca85141fece96b2e23cab27ba760622a70;p=strace mips: fix printing of invalid operations argument of sysmips syscall * sysmips.c (SYS_FUNC(sysmips)): Print 1st argument of syscall using printxval_long. --- diff --git a/sysmips.c b/sysmips.c index 10b102a3..bc3cb8d5 100644 --- a/sysmips.c +++ b/sysmips.c @@ -45,7 +45,7 @@ SYS_FUNC(sysmips) { - printxval(sysmips_operations, tcp->u_arg[0], "???"); + printxval_long(sysmips_operations, tcp->u_arg[0], "???"); tprints(", "); switch (tcp->u_arg[0]) {