From a07fd0a2a2d5e0facc3613af0b10d595212b4bab Mon Sep 17 00:00:00 2001 From: dholland Date: Sat, 3 Oct 2015 08:30:02 +0000 Subject: [PATCH] Use daddr_t instead of uint32_t for the in-memory copy of the inode block pointers. --- sbin/fsck_lfs/fsck.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sbin/fsck_lfs/fsck.h b/sbin/fsck_lfs/fsck.h index c79344f661c6..558ba14d50d9 100644 --- a/sbin/fsck_lfs/fsck.h +++ b/sbin/fsck_lfs/fsck.h @@ -1,4 +1,4 @@ -/* $NetBSD: fsck.h,v 1.24 2015/10/03 08:29:06 dholland Exp $ */ +/* $NetBSD: fsck.h,v 1.25 2015/10/03 08:30:02 dholland Exp $ */ /*- * Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -150,8 +150,7 @@ struct inoinfo { ino_t i_dotdot; /* inode number of `..' */ size_t i_isize; /* size of inode */ u_int i_numblks; /* size of block array in bytes */ - /* XXX ondisk32 */ - int32_t i_blks[1]; /* actually longer */ + daddr_t i_blks[1]; /* actually longer */ } **inphead, **inpsort; #ifndef VERBOSE_BLOCKMAP