Commit 903facfa authored by Nathan Scott's avatar Nathan Scott

[XFS] Remove some spurious double semi-colons.

SGI Modid: 2.5.x-xfs:slinx:163116a
parent a0232262
......@@ -1508,7 +1508,7 @@ xfs_qm_dqpurge(
*/
ASSERT(XFS_DQ_IS_ON_FREELIST(dqp));
dqp->q_mount = NULL;;
dqp->q_mount = NULL;
dqp->q_hash = NULL;
dqp->dq_flags = XFS_DQ_INACTIVE;
memset(&dqp->q_core, 0, sizeof(dqp->q_core));
......
......@@ -1056,7 +1056,7 @@ xlog_get_iclog_buffer_size(xfs_mount_t *mp,
if (xfs_physmem <= btoc(128*1024*1024)) {
log->l_iclog_bufs = XLOG_MIN_ICLOGS;
} else if (xfs_physmem <= btoc(400*1024*1024)) {
log->l_iclog_bufs = XLOG_MED_ICLOGS;;
log->l_iclog_bufs = XLOG_MED_ICLOGS;
} else {
/* 256K with 32K bufs */
log->l_iclog_bufs = XLOG_MAX_ICLOGS;
......
......@@ -485,7 +485,7 @@ xfs_rename(
error = xfs_droplink(tp, target_ip);
if (error) {
rename_which_error_return = __LINE__;
goto abort_return;;
goto abort_return;
}
target_ip_dropped = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment