Skip to content

Commit 5b43d64

Browse files
zhengbin13torvalds
authored andcommitted
ocfs2: remove unneeded semicolons
Fixes coccicheck warnings: fs/ocfs2/cluster/quorum.c:76:2-3: Unneeded semicolon fs/ocfs2/dlmglue.c:573:2-3: Unneeded semicolon Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: zhengbin <[email protected]> Reported-by: Hulk Robot <[email protected]> Acked-by: Joseph Qi <[email protected]> Cc: Mark Fasheh <[email protected]> Cc: Joel Becker <[email protected]> Cc: Junxiao Bi <[email protected]> Cc: Changwei Ge <[email protected]> Cc: Gang He <[email protected]> Cc: Jun Piao <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 67e2d2e commit 5b43d64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fs/ocfs2/cluster/quorum.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ static void o2quo_fence_self(void)
7373
"system by restarting ***\n");
7474
emergency_restart();
7575
break;
76-
};
76+
}
7777
}
7878

7979
/* Indicate that a timeout occurred on a heartbeat region write. The

fs/ocfs2/dlmglue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ void ocfs2_inode_lock_res_init(struct ocfs2_lock_res *res,
570570
mlog_bug_on_msg(1, "type: %d\n", type);
571571
ops = NULL; /* thanks, gcc */
572572
break;
573-
};
573+
}
574574

575575
ocfs2_build_lock_name(type, OCFS2_I(inode)->ip_blkno,
576576
generation, res->l_name);

0 commit comments

Comments
 (0)