diff options
author | Valentin Bartenev <vbart@nginx.com> | 2017-05-10 19:19:14 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2017-05-10 19:19:14 +0300 |
commit | ed38d86abbea981dd3120c5929541c14d667c1ff (patch) | |
tree | 204275df39b541ca73deca54faf75b4d0f5878c7 | |
parent | 558d1f8687c2e736947971e7900e1b040103b53b (diff) | |
download | unit-ed38d86abbea981dd3120c5929541c14d667c1ff.tar.gz unit-ed38d86abbea981dd3120c5929541c14d667c1ff.tar.bz2 |
Added missing "fall through" comments to make GCC 7 happy.
-rw-r--r-- | src/nxt_http_parse.c | 3 | ||||
-rw-r--r-- | src/nxt_murmur_hash.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/nxt_http_parse.c b/src/nxt_http_parse.c index 95745ad4..aba889bf 100644 --- a/src/nxt_http_parse.c +++ b/src/nxt_http_parse.c @@ -599,10 +599,13 @@ nxt_http_lookup_field_end(u_char *p, u_char *end) switch (end - p) { case 3: nxt_http_lookup_field_end_step + /* Fall through. */ case 2: nxt_http_lookup_field_end_step + /* Fall through. */ case 1: nxt_http_lookup_field_end_step + /* Fall through. */ case 0: break; default: diff --git a/src/nxt_murmur_hash.c b/src/nxt_murmur_hash.c index e9adabfa..ce9d6004 100644 --- a/src/nxt_murmur_hash.c +++ b/src/nxt_murmur_hash.c @@ -37,8 +37,10 @@ nxt_murmur_hash2(const void *data, size_t len) switch (len) { case 3: h ^= p[2] << 16; + /* Fall through. */ case 2: h ^= p[1] << 8; + /* Fall through. */ case 1: h ^= p[0]; h *= m; |