diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-08-21 22:26:36 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-08-21 22:26:36 +0200 |
commit | 205f5b5972d4fc5bb9d6d560ccf23eacca89bdc9 (patch) | |
tree | 759646c1c2276c30f6c533099facc4b712ea947a /lib/x509asn1.c | |
parent | 93b34981fa6f82e49ffe90ba8b6f0fefbfba281e (diff) | |
download | curl-205f5b5972d4fc5bb9d6d560ccf23eacca89bdc9.tar.gz |
x509asn1: use FALLTHROUGH
... as no other comments are accepted since 014ed7c22f51463
Diffstat (limited to 'lib/x509asn1.c')
-rw-r--r-- | lib/x509asn1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/x509asn1.c b/lib/x509asn1.c index 0ab077d50..72a0b4a00 100644 --- a/lib/x509asn1.c +++ b/lib/x509asn1.c @@ -302,10 +302,10 @@ utf8asn1str(char **to, int type, const char *from, const char *end) case 4: wc = (wc << 8) | *(const unsigned char *) from++; wc = (wc << 8) | *(const unsigned char *) from++; - /* fallthrough */ + /* FALLTHROUGH */ case 2: wc = (wc << 8) | *(const unsigned char *) from++; - /* fallthrough */ + /* FALLTHROUGH */ default: /* case 1: */ wc = (wc << 8) | *(const unsigned char *) from++; } |