EIO: Add UNUSED where missing.

SVN revision: 61623
This commit is contained in:
Christopher Michael 2011-07-23 23:15:54 +00:00
parent d39b302cee
commit abe52914db
3 changed files with 4 additions and 4 deletions

View File

@ -109,7 +109,7 @@ _eio_inotify_events(Eio_Monitor_Backend *backend, const char *file, int mask)
}
static Eina_Bool
_eio_inotify_handler(void *data, Ecore_Fd_Handler *fdh)
_eio_inotify_handler(void *data __UNUSED__, Ecore_Fd_Handler *fdh)
{
Eio_Monitor_Backend *backend;
unsigned char buffer[16384];

View File

@ -105,7 +105,7 @@ _eio_monitor_error(Eio_Monitor *monitor, int error)
}
static void
_eio_monitor_error_cb(void *data, Eio_File *handler, int error)
_eio_monitor_error_cb(void *data, Eio_File *handler __UNUSED__, int error)
{
Eio_Monitor *monitor = data;

View File

@ -55,11 +55,11 @@ eio_monitor_fallback_shutdown(void)
}
void
eio_monitor_fallback_add(Eio_Monitor *monitor)
eio_monitor_fallback_add(Eio_Monitor *monitor __UNUSED__)
{
}
void
eio_monitor_fallback_del(Eio_Monitor *monitor)
eio_monitor_fallback_del(Eio_Monitor *monitor __UNUSED__)
{
}