From: Hyongtaek Lim Date: Fri, 14 Jul 2017 04:30:17 +0000 (+0900) Subject: fixed invalid format argument types for dlog X-Git-Tag: submit/tizen/20170802.101838~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a3913310b8742d4aade379c55ad3d6631afec76;p=platform%2Fcore%2Fapi%2Fplayer.git fixed invalid format argument types for dlog Change-Id: Ib9cfcf662a3b61bc61615c6a18cc4eb3a8a49ebb Signed-off-by: Hyongtaek Lim --- diff --git a/src/player.c b/src/player.c index fae750f..f236c02 100644 --- a/src/player.c +++ b/src/player.c @@ -1762,7 +1762,7 @@ int player_create(player_h * player) if (player_msg_get_type(module_addr, ret_buf, POINTER)) { pc->cb_info->data_fd = muse_core_client_new_data_ch(); muse_core_send_module_addr(module_addr, pc->cb_info->data_fd); - LOGD("Data channel fd %d, muse module addr %p", pc->cb_info->data_fd, module_addr); + LOGD("Data channel fd %d, muse module addr %p", pc->cb_info->data_fd, (void*)module_addr); } else { ret = PLAYER_ERROR_INVALID_OPERATION; goto ERROR;