Eric Sandeen reported a gcc complaint about uninitialized error variables, so fix that. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> Reported-by: Eric Sandeen <sandeen@xxxxxxxxxx> --- fs/xfs/xfs_reflink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/xfs/xfs_reflink.c b/fs/xfs/xfs_reflink.c index 220d263..5965e94 100644 --- a/fs/xfs/xfs_reflink.c +++ b/fs/xfs/xfs_reflink.c @@ -1437,7 +1437,7 @@ xfs_reflink_dirty_extents( xfs_off_t flen; struct xfs_bmbt_irec map[2]; int nmaps; - int error; + int error = 0; while (end - fbno > 0) { nmaps = 1; -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html