diff options
author | Marcel Raad <raad@teamviewer.com> | 2017-06-03 20:10:52 +0200 |
---|---|---|
committer | Marcel Raad <raad@teamviewer.com> | 2017-06-03 20:10:52 +0200 |
commit | 15136a526847ea4d9490e8e5744834df9f6701b2 (patch) | |
tree | aa9b83c38c731ba914dfa814f6870c94b44dbb4a /lib/x509asn1.c | |
parent | f8518059cecfaf2b338389cef7f71f145b21226d (diff) | |
download | curl-15136a526847ea4d9490e8e5744834df9f6701b2.tar.gz |
x509asn1: fix implicit-fallthrough warning with GCC 7
Diffstat (limited to 'lib/x509asn1.c')
-rw-r--r-- | lib/x509asn1.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |