Fix build warning in TV profile
[platform/core/uifw/isf.git] / ism / extras / efl_panel / isf_panel_efl.cpp
index b929407..8102f2a 100644 (file)
@@ -6143,7 +6143,7 @@ static Eina_Bool ise_check_pid_alive_timer(void *data)
     long int ime_pid = (long int)data;
 
     int status = aul_app_get_status_bypid(ime_pid);
-    LOGD("STATUS : %d %d", status, ime_pid);
+    LOGD("STATUS : %d %d", status, (int)ime_pid);
 
     /* If the status is not one of STATUS_LAUNCHING, STATUS_VISIBLE, STATUS_BG */
     if (status >= STATUS_DYING || status == -1) {
@@ -6562,7 +6562,7 @@ static void slot_run_helper (const String &uuid, const String &config, const Str
                 if (launched) {
                     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);
+                        LOGD ("Register check_alive timer for pid : %d", (int)ime_pid);
                         _ise_check_pid_alive_uuid = uuid;
                         _ise_check_pid_alive_timer = ecore_timer_add (_ise_check_pid_alive_time,
                             ise_check_pid_alive_timer, (void*)ime_pid);