From 36fffda91893f5df08737509f9483773a3dcd968 Mon Sep 17 00:00:00 2001 From: Sungmin Kwak Date: Wed, 11 Oct 2017 08:24:54 +0900 Subject: [PATCH] Remove a build warning The format '%x' expects argument of type 'unsigned int' Change-Id: I42e7815a4c2dfab8e4916dc285a5f894ab25cafd (cherry picked from commit 6108fbaca5953e6546ea7a133e9688450d6b7b00) --- ism/extras/wayland_immodule/wayland_imcontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ism/extras/wayland_immodule/wayland_imcontext.c b/ism/extras/wayland_immodule/wayland_imcontext.c index 9c54748..03aa2da 100644 --- a/ism/extras/wayland_immodule/wayland_imcontext.c +++ b/ism/extras/wayland_immodule/wayland_imcontext.c @@ -1695,7 +1695,7 @@ show_input_panel(Ecore_IMF_Context *ctx) ecore_imf_context_input_panel_return_key_disabled_get (ctx), ecore_imf_context_autocapital_type_get (ctx)); SECURE_LOGD ("client_window : %#x, password mode : %d, prediction_allow : %d\n", - ecore_imf_context_client_window_get (ctx), + (unsigned int)ecore_imf_context_client_window_get (ctx), (imcontext->content_hint & WL_TEXT_INPUT_CONTENT_HINT_SENSITIVE_DATA) ? 1 : 0, ecore_imf_context_prediction_allow_get (ctx)); SECURE_LOGD ("mime_type : %s, input panel position x : %d, y : %d\n", -- 2.7.4