]> www.infradead.org Git - users/hch/misc.git/commitdiff
exfat: Remove unnecessary parentheses
authorLiao Yuanhong <liaoyuanhong@vivo.com>
Mon, 25 Aug 2025 13:35:18 +0000 (21:35 +0800)
committerNamjae Jeon <linkinjeon@kernel.org>
Tue, 30 Sep 2025 04:34:43 +0000 (13:34 +0900)
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>
fs/exfat/nls.c

index 1729bf42eb51694e2c303281443e362ac953579d..8243d94ceaf47d34c28676128f7f333b5ebce7de 100644 (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;
        }