From 68e7335ae5aced5b0622f2cc7a5f756cef6941bb Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Fri, 7 Dec 2018 17:01:57 +0900 Subject: [PATCH] Fix mismatch between log format and actual parameter Change-Id: I7df022dc33db89c28acc3d5b97b8074b07cfa7ca Signed-off-by: Jihoon Kim --- common/vc_info_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/vc_info_parser.c b/common/vc_info_parser.c index 864f470..d4b48ac 100644 --- a/common/vc_info_parser.c +++ b/common/vc_info_parser.c @@ -401,7 +401,7 @@ int vc_info_parser_set_nlu_result(const char* nlu_result) SLOG(LOG_ERROR, vc_info_tag(), "[ERROR] Fail to set file mode - %s", VC_RUNTIME_INFO_NLU_RESULT); } - SLOG(LOG_DEBUG, vc_info_tag(), "[SUCCESS] Write file (%s) size (%d)", VC_RUNTIME_INFO_NLU_RESULT, strlen(nlu_result)); + SLOG(LOG_DEBUG, vc_info_tag(), "[SUCCESS] Write file (%s) size (%zu)", VC_RUNTIME_INFO_NLU_RESULT, strlen(nlu_result)); return 0; } -- 2.7.4