diff options
author | pfg <pfg@FreeBSD.org> | 2013-06-03 20:33:05 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2013-06-03 20:33:05 +0000 |
commit | f11bbd3dc5155ed81f632e3c4ab42bbc7c04dda1 (patch) | |
tree | 0e0e648fe27cf6c66823b913324385598f04e32e | |
parent | 97a99ebeffddde27d7050ccc6dddaf185ffc4d1f (diff) | |
download | FreeBSD-src-f11bbd3dc5155ed81f632e3c4ab42bbc7c04dda1.zip FreeBSD-src-f11bbd3dc5155ed81f632e3c4ab42bbc7c04dda1.tar.gz |
ext2fs: space vs tab.
Obtained from: Christoph Mallon
MFC after: 3 days
-rw-r--r-- | sys/fs/ext2fs/ext2_dinode.h | 2 | ||||
-rw-r--r-- | sys/fs/ext2fs/ext2_inode_cnv.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/ext2fs/ext2_dinode.h b/sys/fs/ext2fs/ext2_dinode.h index 6a16231..253b5d4 100644 --- a/sys/fs/ext2fs/ext2_dinode.h +++ b/sys/fs/ext2fs/ext2_dinode.h @@ -77,7 +77,7 @@ #define EXT3_EPOCH_MASK ((1 << EXT3_EPOCH_BITS) - 1) #define EXT3_NSEC_MASK (~0UL << EXT3_EPOCH_BITS) -#define E2DI_HAS_XTIME(ip) (EXT2_HAS_RO_COMPAT_FEATURE(ip->i_e2fs, \ +#define E2DI_HAS_XTIME(ip) (EXT2_HAS_RO_COMPAT_FEATURE(ip->i_e2fs, \ EXT2F_ROCOMPAT_EXTRA_ISIZE)) /* diff --git a/sys/fs/ext2fs/ext2_inode_cnv.c b/sys/fs/ext2fs/ext2_inode_cnv.c index c63c4f8..c639469 100644 --- a/sys/fs/ext2fs/ext2_inode_cnv.c +++ b/sys/fs/ext2fs/ext2_inode_cnv.c @@ -115,7 +115,7 @@ ext2_i2ei(struct inode *ip, struct ext2fs_dinode *ei) int i; ei->e2di_mode = ip->i_mode; - ei->e2di_nlink = ip->i_nlink; + ei->e2di_nlink = ip->i_nlink; /* Godmar thinks: if dtime is nonzero, ext2 says this inode has been deleted, this would correspond to a zero link count |