diff options
author | Xin LI <delphij@FreeBSD.org> | 2020-09-23 07:27:12 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2020-09-23 07:27:12 +0000 |
commit | 6155466afb8d1a01ad315e5592dafc1c1feb59a9 (patch) | |
tree | b1615a942f6ccd8d743c6de28acddfd66eceba3e /sbin/fsck_msdosfs/dir.c | |
parent | 4d2c300bdeb3d4a8b62ac269c06c1b5cd89f604c (diff) |
Fix build.
Pointy hat to: delphij
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=366065
Diffstat (limited to 'sbin/fsck_msdosfs/dir.c')
-rw-r--r-- | sbin/fsck_msdosfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/fsck_msdosfs/dir.c b/sbin/fsck_msdosfs/dir.c index 018250a28f59..010bd65f95c1 100644 --- a/sbin/fsck_msdosfs/dir.c +++ b/sbin/fsck_msdosfs/dir.c @@ -422,7 +422,7 @@ checksize(struct fat_descriptor *fat, u_char *p, struct dosDirEntry *dir) physicalSize = (u_int64_t)chainsize * boot->ClusterSize; } if (physicalSize < dir->size) { - pwarn("size of %s is %u, should at most be %zu\n", + pwarn("size of %s is %u, should at most be %" PRIu64 "\n", fullpath(dir), dir->size, physicalSize); if (ask(1, "Truncate")) { dir->size = physicalSize; |