Fix mismatch between log format and actual parameter 20/194820/1 accepted/tizen/unified/20181210.060148 submit/tizen/20181207.082704
authorJihoon Kim <jihoon48.kim@samsung.com>
Fri, 7 Dec 2018 08:01:57 +0000 (17:01 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Fri, 7 Dec 2018 08:01:57 +0000 (17:01 +0900)
Change-Id: I7df022dc33db89c28acc3d5b97b8074b07cfa7ca
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
common/vc_info_parser.c

index 864f470..d4b48ac 100644 (file)
@@ -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;
 }