From bb7fd73ce4245f54517de1f378a9471f6c8bb454 Mon Sep 17 00:00:00 2001 From: Sunil Kumar Acharya Date: Tue, 31 Oct 2017 14:56:40 +0530 Subject: cluster/ec: MISSING_BREAK coverity fix Problem: switch case syntax issue. Solution: syntax fixed. BUG: 789278 Change-Id: I76da72c3ab6ffc5db671686a71d6a596beaf496e Signed-off-by: Sunil Kumar Acharya --- xlators/cluster/ec/src/ec-heal.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'xlators/cluster') diff --git a/xlators/cluster/ec/src/ec-heal.c b/xlators/cluster/ec/src/ec-heal.c index 9bf7ab8e597..a75d4717228 100644 --- a/xlators/cluster/ec/src/ec-heal.c +++ b/xlators/cluster/ec/src/ec-heal.c @@ -1219,6 +1219,9 @@ ec_create_name (call_frame_t *frame, ec_t *ec, inode_t *parent, char *name, if (ret != 0) { goto out; } + + /* Fall through */ + default: ret = dict_set_int32 (xdata, GLUSTERFS_INTERNAL_FOP_KEY, 1); -- cgit