Adjust to dlog changes 59/195759/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.032504 accepted/tizen/5.5/unified/mobile/hotfix/20201027.060643 accepted/tizen/5.5/unified/wearable/hotfix/20201027.091837 accepted/tizen/unified/20181219.063438 submit/tizen/20181219.013052 submit/tizen_5.5/20191031.000009 submit/tizen_5.5/20191031.000011 submit/tizen_5.5/20191031.000013 submit/tizen_5.5_mobile_hotfix/20201026.1851010 submit/tizen_5.5_mobile_hotfix/20201027.114301 submit/tizen_5.5_wearable_hotfix/20201026.1843010 submit/tizen_5.5_wearable_hotfix/20201027.114701 tizen_5.5.m2_release
authorYunjin Lee <yunjin-.lee@samsung.com>
Tue, 18 Dec 2018 02:17:27 +0000 (11:17 +0900)
committerYunjin Lee <yunjin-.lee@samsung.com>
Tue, 18 Dec 2018 02:17:56 +0000 (11:17 +0900)
- Build test done for armv7l, aarch64, i586, and x86_64

Change-Id: Iaaad40b20c5aadb07d8e3fef1d1ce94be340b900
Signed-off-by: Yunjin Lee <yunjin-.lee@samsung.com>
packaging/org.tizen.privacy-setting.spec
ui-popup/src/app_main.c
ui/src/package_list_view.c
ui/src/package_privacy_list_view.c

index f97981aeeaf07644587183c4585a90ec249d3689..b464c75e9bfa85d819bfaac445c107d1821ddd80 100755 (executable)
@@ -4,7 +4,7 @@
 
 Name:    org.tizen.privacy-setting-profile_wearable
 Summary: Privacy setting ui application
-Version: 2.0.2
+Version: 2.0.3
 Release: 1
 Provides: org.tizen.privacy-setting = %{version}-%{release}
 Group:   Applications/Other
index 39c19e9e73a39ece0c23a2377d1f26dc00ba6523..3968acebd213854609c31c4a66eb038befa60852 100644 (file)
@@ -134,7 +134,7 @@ static void app_control(app_control_h app_control, void *data)
                __send_error_reply(ad->caller);
                ui_app_exit();
        } else if (strcmp(ad->launch_type, "open") && strcmp(ad->launch_type, "use")) {
-               LOGE("Wrong value for key type APP_CONTROL_DATA_TYPE. It must be 'use' or 'open'. Current value = '%s'", ret, ad->launch_type);
+               LOGE("Wrong value for key type APP_CONTROL_DATA_TYPE. It must be 'use' or 'open'. ret = %d, Current value = '%s'", ret, ad->launch_type);
                __send_error_reply(ad->caller);
                ui_app_exit();
        }
index 67000ba640081b9b4b69c9d442c15194fa395365..f48b182964fd2f1f409f8657eceebbed51584159 100644 (file)
@@ -115,7 +115,7 @@ static void __get_package_privacy_privilege_status(bool* status, const char* pri
                policy_entry* p_filter;
                int ret = 0;
                ret = security_manager_policy_entry_new(&p_filter);
-               log_if(ret != SECURITY_MANAGER_SUCCESS, 1, "security_manager_policy_entry_new failed. ret = %s", ret);
+               log_if(ret != SECURITY_MANAGER_SUCCESS, 1, "security_manager_policy_entry_new failed. ret = %d", ret);
                log_if(p_filter == NULL, 1, "security_manager_policy_entry_new failed failed. creation of new policy entry did not allocate memory");
 
                ret = security_manager_policy_entry_set_application(p_filter, appid);
@@ -128,7 +128,7 @@ static void __get_package_privacy_privilege_status(bool* status, const char* pri
                policy_entry **pp_policy = NULL;
                size_t pp_policy_size = 0;
                ret = security_manager_get_policy(p_filter, &pp_policy, &pp_policy_size);
-               log_if(ret != SECURITY_MANAGER_SUCCESS || pp_policy_size <= 0, 1, "security_manager_get_policy failed. ret = %d, pp_policy_size = %d", ret, pp_policy_size);
+               log_if(ret != SECURITY_MANAGER_SUCCESS || pp_policy_size <= 0, 1, "security_manager_get_policy failed. ret = %d, pp_policy_size = %d", ret, (int)pp_policy_size);
 
                /* Get level from policy */
                unsigned int i = 0;
index fc42845bc5355ab94ed4caf2fb4d7e17115510c7..a6da51bd5a2a46e290e55e64996f7f749274b819 100644 (file)
@@ -40,7 +40,7 @@ static void package_privacy_check_changed_cb(void *data, Evas_Object *obj, void
 static void gl_title_text_del_cb(void *data, Evas_Object *obj)
 {
        if (data) {
-               LOGD("gl_title_text_del : %s", data);
+               LOGD("gl_title_text_del : %s", (char *)data);
                free(data);
        }
 }