Skip to content

Commit

Permalink
xfs: fix coccinelle warnings
Browse files Browse the repository at this point in the history
Removes unneeded semicolon, introduced by commit a70a4fa ("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: Fengguang Wu <fengguang.wu@intel.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
  • Loading branch information
kbuild test robot authored and Dave Chinner committed Aug 4, 2014
1 parent a087481 commit 6eee897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/xfs/xfs_mount.c
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ xfs_mountfs(
!mp->m_sb.sb_inprogress) {
error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
if (error)
goto out_log_dealloc;;
goto out_log_dealloc;
}

/*
Expand Down

0 comments on commit 6eee897

Please sign in to comment.