BUILD: h1_htx: use __fallthrough in h1_parse_chunk()

This avoids one build warning when preprocessing happens before compiling
with gcc >= 7.
diff --git a/src/h1_htx.c b/src/h1_htx.c
index a4048c0..75f9dca 100644
--- a/src/h1_htx.c
+++ b/src/h1_htx.c
@@ -520,7 +520,7 @@
 			break;
 
 		h1m->state = H1_MSG_CHUNK_CRLF;
-		/*fall through */
+		__fallthrough;
 
 	case H1_MSG_CHUNK_CRLF:
 		ret = h1_skip_chunk_crlf(srcbuf, ofs, b_data(srcbuf));