Fix build break in 64bit profiles 79/156179/1
authorJi-hoon Lee <dalton.lee@samsung.com>
Wed, 11 Oct 2017 07:25:05 +0000 (16:25 +0900)
committerJi-hoon Lee <dalton.lee@samsung.com>
Tue, 17 Oct 2017 10:36:48 +0000 (10:36 +0000)
Change-Id: If3749ba124c6d7c53be7515bb54a1aa2eb9b2ec0
(cherry picked from commit c2f01c421f4a162dee6faa3e14762d8d82afaf6a)

ism/extras/efl_panel/isf_panel_efl.cpp
ism/extras/wayland_immodule/wayland_imcontext.c

index 6e37bd5..980784b 100644 (file)
@@ -6118,7 +6118,7 @@ static void delete_ise_check_pid_alive_timer(void)
 static Eina_Bool ise_check_pid_alive_timer(void *data)
 {
     Eina_Bool ret = ECORE_CALLBACK_RENEW;
-    int ime_pid = (int)data;
+    long int ime_pid = (long int)data;
 
     int status = aul_app_get_status_bypid(ime_pid);
     LOGD("STATUS : %d %d", status, ime_pid);
@@ -6540,7 +6540,7 @@ static void slot_run_helper (const String &uuid, const String &config, const Str
                 bool launched = app_control_launch (uuid.c_str ());
 
                 if (launched) {
-                    int ime_pid = aul_app_get_pid(uuid.c_str());
+                    long int ime_pid = aul_app_get_pid(uuid.c_str());
                     if (ime_pid > 0) {
                         LOGD ("Register check_alive timer for pid : %d", ime_pid);
                         _ise_check_pid_alive_uuid = uuid;
index 491b3a1..d613512 100644 (file)
@@ -1698,7 +1698,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",
-            (unsigned int)ecore_imf_context_client_window_get (ctx),
+            (unsigned long 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",