Unverified Commit cc83b0c7 authored by Colin Ian King's avatar Colin Ian King Committed by Konstantin Komarov
Browse files

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: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarKonstantin Komarov <almaz.alexandrovich@paragon-software.com>
parent 4838ec0d
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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;