From c1fbc105cd1008ea2cf1f5d13ff40cf0f1e5c1c8 Mon Sep 17 00:00:00 2001 From: jusung son Date: Fri, 7 Dec 2018 16:23:08 +0900 Subject: [PATCH] Fix dlog format Change-Id: I0d4b3327a5f38da5b7dbb4617b05938c6255c132 Signed-off-by: jusung son --- src/esd_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/esd_main.c b/src/esd_main.c index 1655228..d0b58dc 100644 --- a/src/esd_main.c +++ b/src/esd_main.c @@ -1181,7 +1181,7 @@ static int check_user_event_sender_valid(const char *event_name, const char *app } *tmp = '\0'; - _D("app_id(%s), len(%d)", app_id, strlen(app_id)); + _D("app_id(%s), len(%zu)", app_id, strlen(app_id)); valid_name_len = strlen(USER_EVENT_NAME_PREFIX) + strlen(app_id) + 1; valid_name = calloc(1, valid_name_len); -- 2.7.4