Fix dlog format error 37/195737/1 accepted/tizen_5.5_unified accepted/tizen_5.5_unified_mobile_hotfix accepted/tizen_5.5_unified_wearable_hotfix tizen_5.5 tizen_5.5_mobile_hotfix tizen_5.5_tv tizen_5.5_wearable_hotfix accepted/tizen/5.5/unified/20191031.015414 accepted/tizen/5.5/unified/mobile/hotfix/20201027.075503 accepted/tizen/5.5/unified/wearable/hotfix/20201027.110543 accepted/tizen/unified/20181220.061602 submit/tizen/20181219.093432 submit/tizen_5.5/20191031.000005 submit/tizen_5.5_mobile_hotfix/20201026.185105 submit/tizen_5.5_wearable_hotfix/20201026.184305 tizen_5.5.m2_release
authorsinikang <sinikang@samsung.com>
Mon, 17 Dec 2018 23:20:57 +0000 (08:20 +0900)
committersinikang <sinikang@samsung.com>
Mon, 17 Dec 2018 23:20:57 +0000 (08:20 +0900)
Change-Id: I5ce79c2a18ae2e5bf89e4529518f17aba364c280

packaging/org.tizen.telephony-syspopup.spec
src/telephony_syspopup_draw.c [changed mode: 0755->0644]
src/telephony_syspopup_noti.c [changed mode: 0755->0644]

index 93cc8c4318bc1885698f88108b6db38e216bdb9f..2d9067ba3ff4d957f2335557260abf27073b3a00 100644 (file)
@@ -1,6 +1,6 @@
 %define major 0
 %define minor 1
-%define patchlevel 10
+%define patchlevel 11
 
 %define _usrdir /usr
 %define _appdir %{_usrdir}/apps
old mode 100755 (executable)
new mode 100644 (file)
index 22a9b81..75ebf4e
@@ -382,14 +382,14 @@ Evas_Object *create_win(appdata_t *ad, const char *name)
        //__apply_changeable_ui();
 
        evas_object_show(win_main);
-       DBG("create win_main(%x)", win_main);
+       DBG("create win_main(%p)", win_main);
 
        return win_main;
 }
 
 void terminate_win(Evas_Object *win_main)
 {
-       DBG("remove win_main(%x)", win_main);
+       DBG("remove win_main(%p)", win_main);
        evas_object_hide(win_main);
        evas_object_smart_callback_del(win_main, "delete,request", popup_resp);
        elm_win_keygrab_unset(win_main, "XF86PowerOff", 0, 0);
old mode 100755 (executable)
new mode 100644 (file)
index 24b7423..5f72ee5
@@ -210,10 +210,10 @@ static gboolean __add_noti(tnoti_event_t event, const char *param)
                        time_t time = g_noti_configs[event].timestamp;
                        noti_err = notification_set_time(noti_h, time);
                        if (noti_err != NOTIFICATION_ERROR_NONE) {
-                               ERR("fail to notification_set_time(%d) err(%d)", time, noti_err);
+                               ERR("fail to notification_set_time(%ld) err(%d)", time, noti_err);
                                goto Error;
                        } else {
-                               INFO("Success to notification_set_time[%d]", time);
+                               INFO("Success to notification_set_time[%ld]", time);
                        }
                }
        }