diff options
author | kbuild test robot <fengguang.wu@intel.com> | 2017-06-26 08:54:16 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2017-06-27 18:23:21 -0700 |
commit | 244e3dea58818e9520bf3dbaf4404a60b105bfb1 (patch) | |
tree | fcdacaa0aca44baeb49745be6bf9f346145cd5fe /fs/xfs/xfs_log.c | |
parent | 8ba358756aa08414fa9e65a1a41d28304ed6fd7f (diff) | |
download | linux-244e3dea58818e9520bf3dbaf4404a60b105bfb1.tar.bz2 |
xfs: fix semicolon.cocci warnings
fs/xfs/xfs_log.c:2092:38-39: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: d4ca1d550d05 ("xfs: dump transaction usage details on log reservation overrun")
CC: Brian Foster <bfoster@redhat.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r-- | fs/xfs/xfs_log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index 31f11be42f01..0053bcf2b10a 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c @@ -2085,7 +2085,7 @@ xlog_print_trans( xfs_warn(mp, " type = 0x%x", vec->i_type); xfs_warn(mp, " len = %d", vec->i_len); xfs_warn(mp, " first %d bytes of iovec[%d]:", dumplen, i); - xfs_hex_dump(vec->i_addr, dumplen);; + xfs_hex_dump(vec->i_addr, dumplen); vec++; } |