BUILD: compression: use __fallthrough in comp_http_payload()
This avoids one build warning when preprocessing happens before compiling with gcc >= 7.
This commit is contained in:
parent
ab42dc3358
commit
91d398cce2
|
@ -241,7 +241,7 @@ comp_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg,
|
|||
to_forward += b_data(&trash);
|
||||
}
|
||||
st->flags &= ~COMP_STATE_PROCESSING;
|
||||
/* fall through */
|
||||
__fallthrough;
|
||||
|
||||
default:
|
||||
consume:
|
||||
|
|
Loading…
Reference in New Issue