diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-06-24 10:23:23 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-06-24 10:23:23 +0000 |
commit | 11d9c9c55da5d8a24c55810a84816b0233b36e15 (patch) | |
tree | 64bd206f402e1558fbfc956ce4d0adc4550d02b9 /sys/gnu/ext2fs/ext2_fs.h | |
parent | b0da6d46ce9cdb2877c41fbbfbfb2471130e1101 (diff) |
ufs: sorry, one more pointer in struct inode.
THREADWAY: good example of a really tweaked PeeCee.
Diffstat (limited to 'sys/gnu/ext2fs/ext2_fs.h')
-rw-r--r-- | sys/gnu/ext2fs/ext2_fs.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/gnu/ext2fs/ext2_fs.h b/sys/gnu/ext2fs/ext2_fs.h index 0563603dba3..7f186587cf1 100644 --- a/sys/gnu/ext2fs/ext2_fs.h +++ b/sys/gnu/ext2fs/ext2_fs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2_fs.h,v 1.1 1996/06/24 03:34:54 downsj Exp $ */ +/* $OpenBSD: ext2_fs.h,v 1.2 1996/06/24 10:23:19 downsj Exp $ */ /* * modified for EXT2FS support in Lites 1.1 @@ -50,11 +50,11 @@ struct ext2_inode_info { int32_t info_prealloc_count; }; -#define i_block_group i_e2fs->i_info.info_block_group -#define i_next_alloc_block i_e2fs->i_info.info_next_alloc_block -#define i_next_alloc_goal i_e2fs->i_info.info_next_alloc_goal -#define i_prealloc_block i_e2fs->i_info.info_prealloc_block -#define i_prealloc_count i_e2fs->i_info.info_prealloc_count +#define i_block_group i_e2ext->info_block_group +#define i_next_alloc_block i_e2ext->info_next_alloc_block +#define i_next_alloc_goal i_e2ext->info_next_alloc_goal +#define i_prealloc_block i_e2ext->info_prealloc_block +#define i_prealloc_count i_e2ext->info_prealloc_count /* * The second extended filesystem constants/structures |