diff options
author | Myungki Lee <mk5004.lee@samsung.com> | 2017-08-03 16:53:41 +0900 |
---|---|---|
committer | Myungki Lee <mk5004.lee@samsung.com> | 2017-08-03 16:53:41 +0900 |
commit | c7e8ca8f4f27622b78e9990cc3033201e6ce8eef (patch) | |
tree | 3b54eba701a3cc913a8117cce53c2d857accd3a3 | |
parent | 3266a3cd1a2634575c4d0ca7785327a4c7137c14 (diff) | |
download | notification-c7e8ca8f4f27622b78e9990cc3033201e6ce8eef.tar.gz notification-c7e8ca8f4f27622b78e9990cc3033201e6ce8eef.tar.bz2 notification-c7e8ca8f4f27622b78e9990cc3033201e6ce8eef.zip |
Fixed the wrong return value of notification_post func
- notification_post_for_uid
Change-Id: I445f803a65c905f4adbdc31edad547217de602b4
Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
-rwxr-xr-x | src/notification_internal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notification_internal.c b/src/notification_internal.c index 3c6ddc8..b2359ce 100755 --- a/src/notification_internal.c +++ b/src/notification_internal.c @@ -1396,7 +1396,7 @@ EXPORT_API int notification_post_for_uid(notification_h noti, uid_t uid) if (file_list) g_list_free_full(file_list, free); - return NOTIFICATION_ERROR_NONE; + return ret; } EXPORT_API int notification_update_for_uid(notification_h noti, uid_t uid) |