Skip to content

Commit cb8d6d4

Browse files
LiaoYuanhong-vivonamjaejeon
authored andcommitted
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>
1 parent 2c88607 commit cb8d6d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/exfat/nls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ int exfat_create_upcase_table(struct super_block *sb)
789789
return ret;
790790
}
791791

792-
if (exfat_get_next_cluster(sb, &(clu.dir)))
792+
if (exfat_get_next_cluster(sb, &clu.dir))
793793
return -EIO;
794794
}
795795

0 commit comments

Comments
 (0)