Skip to content

Commit cb8d6d4

Browse files
Liao Yuanhongnamjaejeon
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 <[email protected]> Signed-off-by: Namjae Jeon <[email protected]>
1 parent 2c88607 commit cb8d6d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)