From 3c3ed0ab2e527877fe3d1021f255cb70398a96b3 Mon Sep 17 00:00:00 2001 From: Myungki Lee Date: Wed, 21 Sep 2016 14:56:24 +0900 Subject: [PATCH] Fix typo and coding style Change-Id: I9aa0932bd83ff09ce0817662e8190aef23d3c2ff Signed-off-by: Myungki Lee --- include/notification_ipc.h | 2 +- include/notification_setting_internal.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/notification_ipc.h b/include/notification_ipc.h index dcde048..dc3df5b 100755 --- a/include/notification_ipc.h +++ b/include/notification_ipc.h @@ -89,7 +89,7 @@ int notification_ipc_request_create_from_package_template(notification_h noti, const char *pkgname, const char *template_name); int notification_ipc_get_noti_block_state(const char *pkgname, int *do_not_disturb, int *do_not_disturb_except, int *allow_to_notify, uid_t uid); -GVariant * notification_ipc_make_gvariant_from_dnd_allow_exception( +GVariant *notification_ipc_make_gvariant_from_dnd_allow_exception( struct notification_system_setting_dnd_allow_exception *dnd_allow_exception); int notification_ipc_make_dnd_allow_exception_from_gvariant( struct notification_system_setting_dnd_allow_exception *dnd_allow_exception, diff --git a/include/notification_setting_internal.h b/include/notification_setting_internal.h index cbe0cae..9e565f6 100644 --- a/include/notification_setting_internal.h +++ b/include/notification_setting_internal.h @@ -577,7 +577,7 @@ int notification_setting_set_lock_screen_content(notification_setting_h setting, ... - noti_err = notifiacation_system_setting_load_system_setting(setting); + noti_err = notification_system_setting_load_system_setting(&setting); if (noti_err != NOTIFICATION_ERROR_NONE) { return; } @@ -1205,7 +1205,7 @@ int notification_system_setting_set_lock_screen_content(notification_system_sett int value; notification_system_setting_h setting = NULL; ... - noti_err = notifiacation_system_setting_load_system_setting(&setting); + noti_err = notification_system_setting_load_system_setting(&setting); if (noti_err != NOTIFICATION_ERROR_NONE) { return; } @@ -1247,7 +1247,7 @@ int notification_system_setting_get_dnd_allow_exceptions(notification_system_set int value = 0; notification_system_setting_h setting = NULL; ... - noti_err = notifiacation_system_setting_load_system_setting(&setting); + noti_err = notification_system_setting_load_system_setting(&setting); if (noti_err != NOTIFICATION_ERROR_NONE) { return; } -- 2.7.4