Fix function prototypes by adding missing __UNUSED__. For some reason, the

__unused__ was in the function declaration itself, but not the prototype.



SVN revision: 41712
This commit is contained in:
Christopher Michael 2009-08-12 16:49:59 +00:00
parent f1fac9d0ff
commit 162bac4cef
1 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@
#ifdef USE_IPC
/* local subsystem functions */
static int _e_ipc_cb_client_add(void *data, int type, void *event);
static int _e_ipc_cb_client_del(void *data, int type, void *event);
static int _e_ipc_cb_client_data(void *data, int type, void *event);
static int _e_ipc_cb_client_add(void *data __UNUSED__, int type __UNUSED__, void *event);
static int _e_ipc_cb_client_del(void *data __UNUSED__, int type __UNUSED__, void *event);
static int _e_ipc_cb_client_data(void *data __UNUSED__, int type __UNUSED__, void *event);
/* local subsystem globals */
static Ecore_Ipc_Server *_e_ipc_server = NULL;