summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2024-11-16 23:17:02 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-11-16 23:17:02 +0100
commit758bbf19322cb993245c15c63c8593d71d4c6fd2 (patch)
treea09e1f3ea3fcac48a16a0805534b6413ee16d2dc
parent2b3e2ab6b577efefa981c5b3abbaf11b0ad1e798 (diff)
Fix 64b buildscvsfs/master
-rw-r--r--netfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/netfs.c b/netfs.c
index 92e34ba05..d0f3e7e71 100644
--- a/netfs.c
+++ b/netfs.c
@@ -749,7 +749,7 @@ netfs_get_dirents (struct iouser *cred, struct node *dir,
*data_entries = count;
fshelp_touch (&dir->nn_stat, TOUCH_ATIME, cvsfs_maptime);
- FUNC_EPILOGUE_FMT(err, "wrote %d entries to %d bytes.", count, size);
+ FUNC_EPILOGUE_FMT(err, "wrote %d entries to %zd bytes.", count, size);
}