fs/ntfs3: Remove duplicated assignment to variable r

The assignment to variable r is duplicated, the second assignment
is redundant and can be removed.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
Colin Ian King 2022-07-04 19:53:19 +01:00 committed by Konstantin Komarov
parent 4838ec0d80
commit cc83b0c7e3
No known key found for this signature in database
GPG Key ID: A9B0331F832407B6

View File

@ -563,7 +563,6 @@ bool run_insert_range(struct runs_tree *run, CLST vcn, CLST len)
e = run->runs + run->count;
r = run->runs + index;
r = run->runs + index;
if (vcn > r->vcn)
r += 1;