From: discomfitor Date: Sun, 6 Nov 2011 12:12:21 +0000 (+0000) Subject: use void as param for paramless functions X-Git-Tag: 2.0_alpha~43^2~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23065e1ba2c04cf0b03edcab165af92fa7352ed1;p=framework%2Fuifw%2Fedbus.git use void as param for paramless functions git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@64813 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/notification/notification.c b/src/lib/notification/notification.c index 5bcb07e..6d4b90a 100644 --- a/src/lib/notification/notification.c +++ b/src/lib/notification/notification.c @@ -6,7 +6,7 @@ #include "e_notify_private.h" /* private functions */ -static Eina_List *e_notification_action_list_new(); +static Eina_List *e_notification_action_list_new(void); static E_Notification_Action *e_notification_action_new(const char *id, const char *name); @@ -31,7 +31,7 @@ e_notification_full_new(const char *app_name, unsigned int replaces_id, const ch } EAPI E_Notification * -e_notification_new() +e_notification_new(void) { E_Notification *n; n = calloc(1, sizeof(E_Notification)); @@ -192,7 +192,7 @@ e_notification_closed_get(E_Notification *note) /***** actions *****/ static Eina_List * -e_notification_action_list_new() +e_notification_action_list_new(void) { Eina_List *alist; @@ -365,7 +365,7 @@ e_notification_hint_icon_data_get(E_Notification *n) } EAPI E_Notification_Image * -e_notification_image_new() +e_notification_image_new(void) { E_Notification_Image *img;