From 507255c5925210b9cd2772998d03e22ca35c1027 Mon Sep 17 00:00:00 2001 From: Hiroshi Hatake Date: Tue, 8 Oct 2024 18:08:33 +0900 Subject: [PATCH] in_tail: Fix indentation style Signed-off-by: Hiroshi Hatake --- plugins/in_tail/tail_file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/in_tail/tail_file.c b/plugins/in_tail/tail_file.c index e96408b65b6..985b3e5e580 100644 --- a/plugins/in_tail/tail_file.c +++ b/plugins/in_tail/tail_file.c @@ -525,7 +525,8 @@ static int process_content(struct flb_tail_file *file, size_t *bytes) if (ret == FLB_SIMDUTF_CONNECTOR_CONVERT_OK) { line = decoded; line_len = decoded_len; - } else if (ret == FLB_SIMDUTF_CONNECTOR_CONVERT_NOP) { + } + else if (ret == FLB_SIMDUTF_CONNECTOR_CONVERT_NOP) { flb_plg_debug(ctx->ins, "nothing to convert encoding '%.*s'", line_len, line); } else {