commit | 29c845ca85141fece96b2e23cab27ba760622a70 | [log] [tgz] |
---|---|---|
author | Dmitry V. Levin <ldv@altlinux.org> | Mon May 16 23:34:01 2016 +0000 |
committer | Dmitry V. Levin <ldv@altlinux.org> | Tue May 17 08:03:58 2016 +0000 |
tree | f8787c42829966465148373032fb4e131fb495ae | |
parent | 5e2fc6228eda8e6170571edc3d46649ab709a00c [diff] [blame] |
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 10b102a..bc3cb8d 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]) {