git: 6974ae0530bd - stable/13 - Fix compile for 32-bit architectures.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 11 Dec 2022 01:21:19 UTC
The branch stable/13 has been updated by mckusick: URL: https://cgit.FreeBSD.org/src/commit/?id=6974ae0530bd97d67bf5ca4b582efc9f2c749bc9 commit 6974ae0530bd97d67bf5ca4b582efc9f2c749bc9 Author: Kirk McKusick <mckusick@FreeBSD.org> AuthorDate: 2022-12-11 01:20:08 +0000 Commit: Kirk McKusick <mckusick@FreeBSD.org> CommitDate: 2022-12-11 01:20:08 +0000 Fix compile for 32-bit architectures. --- sbin/fsck_ffs/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/fsck_ffs/inode.c b/sbin/fsck_ffs/inode.c index 12c267fa528a..82338f4f8c08 100644 --- a/sbin/fsck_ffs/inode.c +++ b/sbin/fsck_ffs/inode.c @@ -1126,7 +1126,7 @@ cacheino(union dinode *dp, ino_t inumber) int i, blks; if (getinoinfo(inumber) != NULL) - pfatal("cacheino: duplicate entry for ino %ld\n", + pfatal("cacheino: duplicate entry for ino %jd\n", (intmax_t)inumber); if (howmany(DIP(dp, di_size), sblock.fs_bsize) > UFS_NDADDR) blks = UFS_NDADDR + UFS_NIADDR;