Commit d5cc14d9 authored by Aliasgar Surti's avatar Aliasgar Surti Committed by Darrick J. Wong
Browse files

xfs: removed unused error variable from xchk_refcountbt_rec



Removed unused error variable. Instead of using error variable,
returned the value directly as it wasn't updated.

Signed-off-by: default avatarAliasgar Surti <aliasgar.surti500@gmail.com>
Reviewed-by: default avatarBrian Foster <bfoster@redhat.com>
Reviewed-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
parent 6374ca03
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -341,7 +341,6 @@ xchk_refcountbt_rec(
	xfs_extlen_t		len;
	xfs_nlink_t		refcount;
	bool			has_cowflag;
	int			error = 0;

	bno = be32_to_cpu(rec->refc.rc_startblock);
	len = be32_to_cpu(rec->refc.rc_blockcount);
@@ -366,7 +365,7 @@ xchk_refcountbt_rec(

	xchk_refcountbt_xref(bs->sc, bno, len, refcount);

	return error;
	return 0;
}

/* Make sure we have as many refc blocks as the rmap says. */