commit | 469847945c8254495f26d0ce0733f3e560ad833e | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Nov 14 07:09:39 2022 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Nov 14 11:14:02 2022 +0100 |
tree | c6a1f890988458109d7fae1b2f0c3fc7932d14ff | |
parent | 14de395a30d4573c993b39897a318278823b65fd [diff] |
BUILD: stream: use __fallthrough in stats_dump_full_strm_to_buffer() This avoids 1 build warning when preprocessing happens before compiling with gcc >= 7.
diff --git a/src/stream.c b/src/stream.c index f45f535..59d84b9 100644 --- a/src/stream.c +++ b/src/stream.c
@@ -3239,7 +3239,7 @@ case 0: /* main status of the stream */ ctx->uid = strm->uniq_id; ctx->section = 1; - /* fall through */ + __fallthrough; case 1: get_localtime(strm->logs.accept_date.tv_sec, &tm);