]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
Replace /* fallthrouth*/ by __attribute__ ((fallthrough));
authorAndre Noll <maan@tuebingen.mpg.de>
Mon, 1 Jun 2020 17:28:01 +0000 (19:28 +0200)
committerAndre Noll <maan@tuebingen.mpg.de>
Thu, 17 Sep 2020 15:43:02 +0000 (17:43 +0200)
Some (recent) gcc versions still complain because the switch case
falls through. The new code causes a warning on old compilers which
don't know the fallthrough attribute, but this is still better than
seeing the warning on systems with a recent compiler.

client_common.c

index a7eee85d3cc0d5cf94073ca39c6223a7c4a639d4..dc24a6280acc068bd2cb7cbc0fb178bd8586ca54 100644 (file)
@@ -86,7 +86,7 @@ static void client_pre_select(struct sched *s, void *context)
                        else if (ret > 0)
                                para_fd_set(ct->scc.fd, &s->wfds, &s->max_fileno);
                }
-               /* fallthrough */
+               __attribute__ ((fallthrough));
        case CL_EXECUTING:
                if (ct->btrn[0]) {
                        ret = btr_node_status(ct->btrn[0], 0, BTR_NT_ROOT);
@@ -389,7 +389,7 @@ static int client_post_select(struct sched *s, void *context)
                                        btr_consume(ct->btrn[1], sz);
                        }
                }
-               /* fall through */
+               __attribute__ ((fallthrough));
        case CL_EXECUTING:
                if (ct->btrn[0]) {
                        ret = btr_node_status(ct->btrn[0], 0, BTR_NT_ROOT);