summaryrefslogtreecommitdiff
path: root/ufs-fsck
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-06-13 20:57:57 +0000
committerRoland McGrath <roland@gnu.org>2002-06-13 20:57:57 +0000
commita4b4ef55e355ed7d73ca429b28c865cb3fe63fa0 (patch)
tree3a90366113687f72e7858cdf62c675f40f56a9d0 /ufs-fsck
parent3ed2e50540fe3acf66c6dd2af6e4484b64aae58e (diff)
2002-06-13 Roland McGrath <roland@frob.com>
* fsck.h (struct dirinfo): Revert i_isize to using u_int.
Diffstat (limited to 'ufs-fsck')
-rw-r--r--ufs-fsck/fsck.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ufs-fsck/fsck.h b/ufs-fsck/fsck.h
index f9b0acd3..e80dfc84 100644
--- a/ufs-fsck/fsck.h
+++ b/ufs-fsck/fsck.h
@@ -81,7 +81,7 @@ struct dirinfo
ino_t i_parent; /* inode entry of parent */
ino_t i_dotdot; /* inode number of `..' */
ino_t i_dot; /* inode number of `.' */
- size_t i_isize; /* size of inode */
+ u_int i_isize; /* size of inode */
u_int i_numblks; /* size of block array in bytes */
daddr_t i_blks[0]; /* array of inode block addresses */
};