X-Git-Url: https://granicus.if.org/sourcecode?a=blobdiff_plain;f=process_vm.c;h=f63b91730ac9ddedf8e04e0e37cb703f62e6ee1a;hb=c79792293b167c4931d750e992d14aec60b806ad;hp=5c2ba4d9f0c6d2140565f247f5883fcf3530c4da;hpb=7fa3d78319b20a996923f9b665afc3a3571ed08b;p=strace diff --git a/process_vm.c b/process_vm.c index 5c2ba4d9..f63b9173 100644 --- a/process_vm.c +++ b/process_vm.c @@ -43,13 +43,13 @@ SYS_FUNC(process_vm_readv) syserror(tcp) ? IOV_DECODE_ADDR : IOV_DECODE_STR, tcp->u_rval); /* arg 3: local iovcnt */ - tprintf(", %" PRI_kru ", ", local_iovcnt); + tprintf(", %" PRI_klu ", ", local_iovcnt); /* arg 4: remote iov */ tprint_iov(tcp, remote_iovcnt, tcp->u_arg[3], IOV_DECODE_ADDR); /* arg 5: remote iovcnt */ /* arg 6: flags */ - tprintf(", %" PRI_kru ", %" PRI_kru, remote_iovcnt, flags); + tprintf(", %" PRI_klu ", %" PRI_klu, remote_iovcnt, flags); } return 0; } @@ -65,12 +65,12 @@ SYS_FUNC(process_vm_writev) /* arg 2: local iov */ tprint_iov(tcp, local_iovcnt, tcp->u_arg[1], IOV_DECODE_STR); /* arg 3: local iovcnt */ - tprintf(", %" PRI_kru ", ", local_iovcnt); + tprintf(", %" PRI_klu ", ", local_iovcnt); /* arg 4: remote iov */ tprint_iov(tcp, remote_iovcnt, tcp->u_arg[3], IOV_DECODE_ADDR); /* arg 5: remote iovcnt */ /* arg 6: flags */ - tprintf(", %" PRI_kru ", %" PRI_kru, remote_iovcnt, flags); + tprintf(", %" PRI_klu ", %" PRI_klu, remote_iovcnt, flags); return RVAL_DECODED; }