Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6eee8972 authored by kbuild test robot's avatar kbuild test robot Committed by Dave Chinner
Browse files

xfs: fix coccinelle warnings



Removes unneeded semicolon, introduced by commit a70a4fa5 ("xfs: fix
a couple error sequence jumps in xfs_mountfs"):

fs/xfs/xfs_mount.c:858:24-25: Unneeded semicolon

Generated by: scripts/coccinelle/misc/semicolon.cocci

Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Reviewed-by: default avatarBrian Foster <bfoster@redhat.com>
Signed-off-by: default avatarDave Chinner <david@fromorbit.com>
parent a0874818
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -863,7 +863,7 @@ xfs_mountfs(
	     !mp->m_sb.sb_inprogress) {
	     !mp->m_sb.sb_inprogress) {
		error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
		error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
		if (error)
		if (error)
			goto out_log_dealloc;;
			goto out_log_dealloc;
	}
	}


	/*
	/*