diff options
author | Lukas Czerner <lczerner@redhat.com> | 2014-05-12 12:55:07 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2014-05-12 12:55:07 -0400 |
commit | c8b459f492cbe8be26d8eac0489ef627ed355947 (patch) | |
tree | b8796e01968b36a0eb607cc08839a8fe921b7dcd /fs/ext4/super.c | |
parent | 029b10c5a8d9e9db528eea66f5728ccca56c2f27 (diff) |
ext4: remove unnecessary double parentheses
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r-- | fs/ext4/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index b26a3959c8dd..84e330373f9e 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -1904,7 +1904,7 @@ static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es, if (!(sbi->s_mount_state & EXT4_VALID_FS)) ext4_msg(sb, KERN_WARNING, "warning: mounting unchecked fs, " "running e2fsck is recommended"); - else if ((sbi->s_mount_state & EXT4_ERROR_FS)) + else if (sbi->s_mount_state & EXT4_ERROR_FS) ext4_msg(sb, KERN_WARNING, "warning: mounting fs with errors, " "running e2fsck is recommended"); |