From ed38d86abbea981dd3120c5929541c14d667c1ff Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Wed, 10 May 2017 19:19:14 +0300 Subject: Added missing "fall through" comments to make GCC 7 happy. --- src/nxt_http_parse.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/nxt_http_parse.c') 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: -- cgit