From c1547d215650db309ff47534144c8b41d62df8df Mon Sep 17 00:00:00 2001 From: Leonardo Alminana Date: Wed, 14 Aug 2024 22:08:19 +0200 Subject: [PATCH] in_proc: fixed a wrong data type used for an option Signed-off-by: Leonardo Alminana --- plugins/out_es/es.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/out_es/es.h b/plugins/out_es/es.h index 67efc9e0442..a3f1ecadf98 100644 --- a/plugins/out_es/es.h +++ b/plugins/out_es/es.h @@ -40,7 +40,7 @@ struct flb_elasticsearch { /* Elasticsearch index (database) and type (table) */ char *index; char *type; - char suppress_type_name; + int suppress_type_name; /* HTTP Auth */ char *http_user;