From: Marcel Raad Date: Sat, 3 Jun 2017 18:10:52 +0000 (+0200) Subject: x509asn1: fix implicit-fallthrough warning with GCC 7 X-Git-Tag: curl-7_54_1~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=15136a526847ea4d9490e8e5744834df9f6701b2;p=curl x509asn1: fix implicit-fallthrough warning with GCC 7 --- diff --git a/lib/x509asn1.c b/lib/x509asn1.c index c4bc7c1fd..bba20233f 100644 --- a/lib/x509asn1.c +++ b/lib/x509asn1.c @@ -466,6 +466,7 @@ static const char *GTime2str(const char *beg, const char *end) break; case 2: sec1 = fracp[-2]; + /* FALLTHROUGH */ case 1: sec2 = fracp[-1]; break;