From db9ceb5cbea5866a4fb0695657c29f93d3580978 Mon Sep 17 00:00:00 2001 From: Leonardo Alminana Date: Wed, 14 Aug 2024 21:38:56 +0200 Subject: [PATCH] out_stackdriver: fixed a wrong data type used for two boolean options Signed-off-by: Leonardo Alminana --- plugins/out_stackdriver/stackdriver.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/out_stackdriver/stackdriver.h b/plugins/out_stackdriver/stackdriver.h index fa5cb2e2b10..66462cf4fab 100644 --- a/plugins/out_stackdriver/stackdriver.h +++ b/plugins/out_stackdriver/stackdriver.h @@ -183,8 +183,8 @@ struct flb_stackdriver { flb_sds_t log_name_key; flb_sds_t http_request_key; int http_request_key_size; - bool autoformat_stackdriver_trace; - bool test_log_entry_format; + int autoformat_stackdriver_trace; + int test_log_entry_format; flb_sds_t stackdriver_agent;