mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
exfat: remove the assignment of 0 to bool variable
There is no need to init 'sync' in exfat_set_vol_flags(). This also fixes the following coccicheck warning: fs/exfat/super.c:104:6-10: WARNING: Assignment of 0/1 to bool variable Signed-off-by: Jason Yan <yanaijie@huawei.com> Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
This commit is contained in:
parent
6778337a7a
commit
cdc06129a6
@ -102,7 +102,7 @@ int exfat_set_vol_flags(struct super_block *sb, unsigned short new_flag)
|
||||
{
|
||||
struct exfat_sb_info *sbi = EXFAT_SB(sb);
|
||||
struct pbr64 *bpb = (struct pbr64 *)sbi->pbr_bh->b_data;
|
||||
bool sync = 0;
|
||||
bool sync;
|
||||
|
||||
/* flags are not changed */
|
||||
if (sbi->vol_flag == new_flag)
|
||||
|
Loading…
Reference in New Issue
Block a user