From bd79660f37a6110d0e53f20cec7a3863c5eff78e Mon Sep 17 00:00:00 2001 From: dimitri staessens Date: Sun, 4 Jun 2017 15:45:21 +0200 Subject: lib, irmd: Handle case fallthrough in gcc 7 --- src/irmd/main.c | 1 + src/lib/cdap_req.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/irmd/main.c b/src/irmd/main.c index b3243192..0a88d311 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -1320,6 +1320,7 @@ static struct irm_flow * flow_req_arr(pid_t api, return NULL; pthread_rwlock_wrlock(&irmd.reg_lock); + /* FALLTHRU */ case REG_NAME_FLOW_ACCEPT: h_api = reg_entry_get_api(re); if (h_api == -1) { diff --git a/src/lib/cdap_req.c b/src/lib/cdap_req.c index 4eab6fa6..bb11dbf6 100644 --- a/src/lib/cdap_req.c +++ b/src/lib/cdap_req.c @@ -126,6 +126,7 @@ int cdap_req_wait(struct cdap_req * creq) switch(creq->state) { case REQ_DESTROY: ret = -1; + /* FALLTHRU */ case REQ_PENDING: creq->state = REQ_NULL; pthread_cond_broadcast(&creq->cond); -- cgit v1.2.3