diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-01-11 14:17:30 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2018-01-11 14:17:30 -0500 |
commit | a794df0ecdd557961a0302062f5a7a5f500a8542 (patch) | |
tree | 9e5e0d3ae460349f5ff9fa9616661f8169c2abb6 | |
parent | 9f0372488cc9243018a812e8cfbf27de650b187b (diff) |
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: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Jan Kara <jack@suse.cz>
-rw-r--r-- | fs/ext4/namei.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index e750d68fbcb5..c5696a93a3a6 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c | |||
@@ -3221,9 +3221,9 @@ static int ext4_link(struct dentry *old_dentry, | |||
3221 | if (err) | 3221 | if (err) |
3222 | return err; | 3222 | return err; |
3223 | 3223 | ||
3224 | if ((ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT)) && | 3224 | if ((ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT)) && |
3225 | (!projid_eq(EXT4_I(dir)->i_projid, | 3225 | (!projid_eq(EXT4_I(dir)->i_projid, |
3226 | EXT4_I(old_dentry->d_inode)->i_projid))) | 3226 | EXT4_I(old_dentry->d_inode)->i_projid))) |
3227 | return -EXDEV; | 3227 | return -EXDEV; |
3228 | 3228 | ||
3229 | err = dquot_initialize(dir); | 3229 | err = dquot_initialize(dir); |