diff options
author | kbuild test robot <fengguang.wu@intel.com> | 2014-08-03 23:49:40 -0400 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-08-03 23:49:40 -0400 |
commit | 6eee8972cc1799d3dde3f1e699abf286ed3adbaf (patch) | |
tree | 5b8f4d43859406ef16eeb012294ff2aaae624d48 /fs/xfs | |
parent | a087481811bed920eb5eedbb5574b915881adbea (diff) |
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: Fengguang Wu <fengguang.wu@intel.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index c8a328ee2c2a..39d84d379bbd 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c | |||
@@ -863,7 +863,7 @@ xfs_mountfs( | |||
863 | !mp->m_sb.sb_inprogress) { | 863 | !mp->m_sb.sb_inprogress) { |
864 | error = xfs_initialize_perag_data(mp, sbp->sb_agcount); | 864 | error = xfs_initialize_perag_data(mp, sbp->sb_agcount); |
865 | if (error) | 865 | if (error) |
866 | goto out_log_dealloc;; | 866 | goto out_log_dealloc; |
867 | } | 867 | } |
868 | 868 | ||
869 | /* | 869 | /* |