Commit a794df0e authored by Colin Ian King's avatar Colin Ian King Committed by Theodore Ts'o

ext4: fix incorrect indentation of if statement

The indentation is incorrect and spaces need replacing with a tab
on the if statement.

Cleans up smatch warning:
fs/ext4/namei.c:3220 ext4_link() warn: inconsistent indenting
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
Reviewed-by: default avatarJan Kara <jack@suse.cz>
parent 9f037248
...@@ -3221,9 +3221,9 @@ static int ext4_link(struct dentry *old_dentry, ...@@ -3221,9 +3221,9 @@ static int ext4_link(struct dentry *old_dentry,
if (err) if (err)
return err; return err;
if ((ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT)) && if ((ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT)) &&
(!projid_eq(EXT4_I(dir)->i_projid, (!projid_eq(EXT4_I(dir)->i_projid,
EXT4_I(old_dentry->d_inode)->i_projid))) EXT4_I(old_dentry->d_inode)->i_projid)))
return -EXDEV; return -EXDEV;
err = dquot_initialize(dir); err = dquot_initialize(dir);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment