summaryrefslogtreecommitdiff
path: root/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'system.c')
-rw-r--r--system.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/system.c b/system.c
index 6472529..7cba575 100644
--- a/system.c
+++ b/system.c
@@ -1734,7 +1734,7 @@ struct tcb *tcp;
#endif
)))) {
printpath(tcp, (size_t)info.oldval);
- tprintf(", %d, ", oldlen);
+ tprintf(", %Zu, ", oldlen);
if (info.newval == 0)
tprintf("NULL");
else if (syserror(tcp))
@@ -1743,7 +1743,7 @@ struct tcb *tcp;
printpath(tcp, (size_t)info.newval);
tprintf(", %Zd", info.newlen);
} else {
- tprintf("%p, %d, %p, %Zd", info.oldval, oldlen,
+ tprintf("%p, %Zd, %p, %Zd", info.oldval, oldlen,
info.newval, info.newlen);
}
tprintf("}");