The branch stable/14 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=beae50a72396e26e0caab50ade2d6c2ec6ca38eb
commit beae50a72396e26e0caab50ade2d6c2ec6ca38eb Author: Konstantin Belousov <k...@freebsd.org> AuthorDate: 2025-05-25 18:11:58 +0000 Commit: Konstantin Belousov <k...@freebsd.org> CommitDate: 2025-06-03 00:35:47 +0000 fsck_ffs: change struct bufarea member b_index type to uint64_t (cherry picked from commit e36f069ecb478b9775b7ad717768d011251d479e) --- sbin/fsck_ffs/fsck.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/fsck_ffs/fsck.h b/sbin/fsck_ffs/fsck.h index 2e15dad00d12..b34309ddafc9 100644 --- a/sbin/fsck_ffs/fsck.h +++ b/sbin/fsck_ffs/fsck.h @@ -154,7 +154,7 @@ struct bufarea { int b_flags; /* B_ flags below */ int b_type; /* BT_ type below */ int b_refcnt; /* ref count of users */ - int b_index; /* for BT_LEVEL, ptr index */ + uint64_t b_index; /* for BT_LEVEL, ptr index */ /* for BT_INODES, first inum */ union { char *b_buf; /* buffer space */