From: mirabilos Date: Tue, 8 Aug 2017 15:57:24 +0000 (+0200) Subject: more /* FALLTHROUGH */ for GCC 7 X-Git-Tag: jupp-3_1_31-1~7 X-Git-Url: https://evolvis.org/plugins/scmgit/cgi-bin/gitweb.cgi?p=alioth%2Fjupp.git;a=commitdiff_plain;h=f5af7685c94f1bf8c80f8d5da0018af6696db572 more /* FALLTHROUGH */ for GCC 7 --- diff --git a/termcap.c b/termcap.c index a0dad37..c918970 100644 --- a/termcap.c +++ b/termcap.c @@ -583,9 +583,11 @@ void texec(CAP *cap, unsigned char *s, int l, int a0, int a1, int a2, int a3) case 'd': if (x < 10) goto one; + /* FALLTHROUGH */ case '2': if (x < 100) goto two; + /* FALLTHROUGH */ case '3': c = '0'; while (x >= 100) {