aboutsummaryrefslogtreecommitdiffstats
path: root/guts/getcwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/getcwd.c')
-rw-r--r--guts/getcwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/guts/getcwd.c b/guts/getcwd.c
index 18c4748..2537e94 100644
--- a/guts/getcwd.c
+++ b/guts/getcwd.c
@@ -55,7 +55,7 @@
rc = buf;
pseudo_debug(3, "getcwd: copying %d (%d + 1 - %d) characters from <%s>.\n",
(int) ((pseudo_cwd_len + 1) - pseudo_chroot_len),
- pseudo_cwd_len, pseudo_chroot_len,
+ (int) pseudo_cwd_len, (int) pseudo_chroot_len,
pseudo_cwd_rel);
memcpy(buf, pseudo_cwd_rel, (pseudo_cwd_len + 1) - (pseudo_cwd_rel - pseudo_cwd));
if (!*buf) {