Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Dec 2022 01:21:19 GMT
From:      Kirk McKusick <mckusick@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 6974ae0530bd - stable/13 - Fix compile for 32-bit architectures.
Message-ID:  <202212110121.2BB1LJ91070237@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202212110121.2BB1LJ91070237>