fs/ntfs3: Remove a useless shadowing variable
There is already a 'u8 mask' defined at the top of the function. There is no need to define a new one here. Remove the useless and shadowing new 'mask' variable. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Reviewed-by: Kari Argillander <kari.argillander@gmail.com> Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
parent
d2846bf33c
commit
808bc0a82b
|
@ -119,8 +119,7 @@ bool are_bits_set(const ulong *lmap, size_t bit, size_t nbits)
|
|||
|
||||
pos = nbits & 7;
|
||||
if (pos) {
|
||||
u8 mask = fill_mask[pos];
|
||||
|
||||
mask = fill_mask[pos];
|
||||
if ((*map & mask) != mask)
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue