Module Name:    src
Committed By:   dholland
Date:           Sat Oct  3 08:30:02 UTC 2015

Modified Files:
        src/sbin/fsck_lfs: fsck.h

Log Message:
Use daddr_t instead of uint32_t for the in-memory copy of the inode
block pointers.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sbin/fsck_lfs/fsck.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/fsck_lfs/fsck.h
diff -u src/sbin/fsck_lfs/fsck.h:1.24 src/sbin/fsck_lfs/fsck.h:1.25
--- src/sbin/fsck_lfs/fsck.h:1.24	Sat Oct  3 08:29:06 2015
+++ src/sbin/fsck_lfs/fsck.h	Sat Oct  3 08:30:02 2015
@@ -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

Reply via email to