Skip to content

Commit

Permalink
in_tail: Fix indentation style
Browse files Browse the repository at this point in the history
Signed-off-by: Hiroshi Hatake <[email protected]>
  • Loading branch information
cosmo0920 committed Oct 8, 2024
1 parent 6f49d48 commit 507255c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/in_tail/tail_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 507255c

Please sign in to comment.