From 40aaa13e8ecf75c138adf1b7a157d03dc6cc4009 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Mon, 9 Apr 2018 09:11:24 +0000 Subject: [PATCH] fixed an issue in logfmtv.h --- lib/logfmtv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logfmtv.h b/lib/logfmtv.h index 87b6f0e..14b27ed 100644 --- a/lib/logfmtv.h +++ b/lib/logfmtv.h @@ -560,7 +560,7 @@ static int logfmtv (hcl_t* hcl, const fmtchar_t* fmt, hcl_fmtout_t* data, va_lis /* this must not fail since the dry-run above was successful */ /*hcl_convutooochars (hcl, &usp[tot_len], &src_len, conv_buf, &conv_len);*/ - hcl_conv_uchars_to_bchars_with_cmgr (hcl, &usp[tot_len], &src_len, conv_buf, &conv_len, hcl->cmgr); + hcl_conv_uchars_to_bchars_with_cmgr (&usp[tot_len], &src_len, conv_buf, &conv_len, hcl->cmgr); tot_len += src_len; if (conv_len > n) conv_len = n;