summaryrefslogtreecommitdiff
path: root/sendfile.c
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2016-12-26 10:16:35 +0000
committerDmitry V. Levin <ldv@altlinux.org>2016-12-26 10:43:34 +0000
commit89636759d781eb506c6c96a2d72fb8f28ca7e297 (patch)
treef255c958a0154ee261dd3128cc6c0d41a176652c /sendfile.c
parent7fa3d78319b20a996923f9b665afc3a3571ed08b (diff)
downloadstrace-89636759d781eb506c6c96a2d72fb8f28ca7e297.tar.gz
Automatically replace PRI_kr[dux] with PRI_kl[dux]
Remove temporary macros created for transition from long to kernel_ulong_t. Automatically replace PRI_kr[dux] with PRI_kl[dux] using $ git grep -l 'PRI_kr[dux]' | xargs sed -ri 's/PRI_kr([dux])/PRI_kl\1/g' * defs.h (PRI_krd, PRI_kru, PRI_krx): Remove. All users updated.
Diffstat (limited to 'sendfile.c')
-rw-r--r--sendfile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sendfile.c b/sendfile.c
index 293316fe9..7faf1ca27 100644
--- a/sendfile.c
+++ b/sendfile.c
@@ -35,7 +35,7 @@ SYS_FUNC(sendfile64)
printfd(tcp, tcp->u_arg[1]);
tprints(", ");
if (!printnum_int64(tcp, tcp->u_arg[2], "%" PRIu64)) {
- tprintf(", %" PRI_kru, tcp->u_arg[3]);
+ tprintf(", %" PRI_klu, tcp->u_arg[3]);
return RVAL_DECODED;
}
} else {
@@ -43,7 +43,7 @@ SYS_FUNC(sendfile64)
tprints(" => ");
printnum_int64(tcp, tcp->u_arg[2], "%" PRIu64);
}
- tprintf(", %" PRI_kru, tcp->u_arg[3]);
+ tprintf(", %" PRI_klu, tcp->u_arg[3]);
}
return 0;
@@ -58,7 +58,7 @@ SYS_FUNC(sendfile)
tprints(", ");
if (!printnum_ulong(tcp, tcp->u_arg[2])
|| !tcp->u_arg[3]) {
- tprintf(", %" PRI_kru, tcp->u_arg[3]);
+ tprintf(", %" PRI_klu, tcp->u_arg[3]);
return RVAL_DECODED;
}
} else {
@@ -66,7 +66,7 @@ SYS_FUNC(sendfile)
tprints(" => ");
printnum_ulong(tcp, tcp->u_arg[2]);
}
- tprintf(", %" PRI_kru, tcp->u_arg[3]);
+ tprintf(", %" PRI_klu, tcp->u_arg[3]);
}
return 0;