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:
Liao Yuanhong
2025-09-30 13:34:43 +09:00
committed by Namjae Jeon
parent 2c88607ac8
commit cb8d6d4aa0
+1 -1
View File
@@ -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;
}