summaryrefslogtreecommitdiff
path: root/src/notification_setting_service.c
diff options
context:
space:
mode:
authorMyungki Lee <mk5004.lee@samsung.com>2016-07-07 15:41:20 +0900
committerMyungki Lee <mk5004.lee@samsung.com>2016-07-07 15:41:20 +0900
commit133d89f067b19ba123f4226218716e47ba40dca2 (patch)
treeaed5175a6d7a2ce88d733f6f2031a3898e6d6860 /src/notification_setting_service.c
parentc672586db4a03755fc90a64b9e52214ca60a8399 (diff)
downloadnotification-133d89f067b19ba123f4226218716e47ba40dca2.tar.gz
notification-133d89f067b19ba123f4226218716e47ba40dca2.tar.bz2
notification-133d89f067b19ba123f4226218716e47ba40dca2.zip
Fix build warning
- type cast for lock_screen_content_level - delete unused func - delete comment Change-Id: I30c3f415e9d344caccd8f70d0c413f77afbaac07 Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
Diffstat (limited to 'src/notification_setting_service.c')
-rw-r--r--src/notification_setting_service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notification_setting_service.c b/src/notification_setting_service.c
index e5a3a32..2da4c87 100644
--- a/src/notification_setting_service.c
+++ b/src/notification_setting_service.c
@@ -356,7 +356,7 @@ int noti_system_setting_load_system_setting(notification_system_setting_h *syste
_get_table_field_data_int(query_result, &(result_system_setting->dnd_start_min), col_index++);
_get_table_field_data_int(query_result, &(result_system_setting->dnd_end_hour), col_index++);
_get_table_field_data_int(query_result, &(result_system_setting->dnd_end_min), col_index++);
- _get_table_field_data_int(query_result, &(result_system_setting->lock_screen_content_level), col_index++);
+ _get_table_field_data_int(query_result, (int *)&(result_system_setting->lock_screen_content_level), col_index++);
/* LCOV_EXCL_STOP */
}