diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-11-16 23:17:02 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-11-16 23:17:02 +0100 |
commit | 758bbf19322cb993245c15c63c8593d71d4c6fd2 (patch) | |
tree | a09e1f3ea3fcac48a16a0805534b6413ee16d2dc | |
parent | 2b3e2ab6b577efefa981c5b3abbaf11b0ad1e798 (diff) |
Fix 64b buildscvsfs/master
-rw-r--r-- | netfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |