Skip to content

Commit

Permalink
FIX PRINTF FORMAT
Browse files Browse the repository at this point in the history
Signed-off-by: Takahiro Yamashita <[email protected]>
  • Loading branch information
nokute78 committed Jul 16, 2023
1 parent 0449a9a commit 602bf1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flb_log_event_encoder_primitives.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ int flb_log_event_encoder_append_value(
value_length);
if (result != 0) {
flb_errno();
flb_error("result=%d str=%s len=%d", result, value_buffer, value_length);
flb_error("result=%d str=%s strp=%p len=%zu", result, value_buffer, value_buffer, value_length);
}
}
else if (value_type == FLB_LOG_EVENT_BINARY_BODY_VALUE_TYPE) {
Expand Down

0 comments on commit 602bf1a

Please sign in to comment.