aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkbuild test robot <[email protected]>2017-06-26 08:54:16 -0700
committerDarrick J. Wong <[email protected]>2017-06-27 18:23:21 -0700
commit244e3dea58818e9520bf3dbaf4404a60b105bfb1 (patch)
treefcdacaa0aca44baeb49745be6bf9f346145cd5fe
parent8ba358756aa08414fa9e65a1a41d28304ed6fd7f (diff)
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 <[email protected]> Signed-off-by: Fengguang Wu <[email protected]> Reviewed-by: Brian Foster <[email protected]> Reviewed-by: Darrick J. Wong <[email protected]> Signed-off-by: Darrick J. Wong <[email protected]>
-rw-r--r--fs/xfs/xfs_log.c2
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++;
}