diff options
author | Jihoon Kim <jihoon48.kim@samsung.com> | 2018-12-07 17:01:57 +0900 |
---|---|---|
committer | Jihoon Kim <jihoon48.kim@samsung.com> | 2018-12-07 17:01:57 +0900 |
commit | 68e7335ae5aced5b0622f2cc7a5f756cef6941bb (patch) | |
tree | 75bc9d15de8bfd411114ea2140b13741ff97e813 | |
parent | 21dbcba34abd3e5c96a59ee5dfbf818a2950a315 (diff) | |
download | voice-control-68e7335ae5aced5b0622f2cc7a5f756cef6941bb.tar.gz voice-control-68e7335ae5aced5b0622f2cc7a5f756cef6941bb.tar.bz2 voice-control-68e7335ae5aced5b0622f2cc7a5f756cef6941bb.zip |
Fix mismatch between log format and actual parametersubmit/tizen/20181207.082704accepted/tizen/unified/20181210.060148
Change-Id: I7df022dc33db89c28acc3d5b97b8074b07cfa7ca
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
-rw-r--r-- | common/vc_info_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |