mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 06:31:58 +02:00
exfat: Remove unnecessary parentheses
When using &, it's unnecessary to have parentheses afterward. Remove redundant parentheses to enhance readability. Signed-off-by: Liao Yuanhong <liaoyuanhong@vivo.com> Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
This commit is contained in:
parent
2c88607ac8
commit
cb8d6d4aa0
|
|
@ -789,7 +789,7 @@ int exfat_create_upcase_table(struct super_block *sb)
|
|||
return ret;
|
||||
}
|
||||
|
||||
if (exfat_get_next_cluster(sb, &(clu.dir)))
|
||||
if (exfat_get_next_cluster(sb, &clu.dir))
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user