diff options
| author | Liao Yuanhong <liaoyuanhong@vivo.com> | 2025-08-25 21:35:18 +0800 |
|---|---|---|
| committer | Namjae Jeon <linkinjeon@kernel.org> | 2025-09-30 13:34:43 +0900 |
| commit | cb8d6d4aa015a8dace68d129baf7a4d7042a667d (patch) | |
| tree | b99ec034833a8ef1ac4e334e2ed8614e44cc5818 | |
| parent | exfat: drop redundant conversion to bool (diff) | |
| download | linux-cb8d6d4aa015a8dace68d129baf7a4d7042a667d.tar.gz linux-cb8d6d4aa015a8dace68d129baf7a4d7042a667d.zip | |
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>
| -rw-r--r-- | fs/exfat/nls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exfat/nls.c b/fs/exfat/nls.c index 1729bf42eb51..8243d94ceaf4 100644 --- a/fs/exfat/nls.c +++ b/fs/exfat/nls.c @@ -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; } |
