From acd3a4d4758f656fcba4314a251ce0fa4b89a6fe Mon Sep 17 00:00:00 2001 From: Edmund Rhudy Date: Mon, 2 Oct 2023 22:00:12 -0400 Subject: [PATCH] Fix leftover bool --- plugins/in_http/http_prot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/in_http/http_prot.c b/plugins/in_http/http_prot.c index f12d6c38767..1841c39bc74 100644 --- a/plugins/in_http/http_prot.c +++ b/plugins/in_http/http_prot.c @@ -500,7 +500,7 @@ static int process_payload(struct flb_http *ctx, struct http_conn *conn, size_t uncompressed_size = 0; /* used when checking content-encoding */ - bool gzip_compressed = false; + int gzip_compressed = FLB_FALSE; int gzip_ret; header = &session->parser.headers[MK_HEADER_CONTENT_TYPE];