From 0bfd74436d3945e915d373364bbed1f08d3d3c38 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Sat, 10 Mar 2012 14:03:25 +0000 Subject: Output iovec length in vmsplice and process_vm_readv decoders * io.c (sys_vmsplice): Output iovec length. * process.c (sys_process_vm_readv): Likewise. --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io.c') diff --git a/io.c b/io.c index 8f2b45a..9dd869a 100644 --- a/io.c +++ b/io.c @@ -361,7 +361,7 @@ sys_vmsplice(struct tcb *tcp) tprints(", "); /* const struct iovec *iov, unsigned long nr_segs */ tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); - tprints(", "); + tprintf(", %lu, ", tcp->u_arg[2]); /* unsigned int flags */ printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???"); } -- cgit v1.2.3