examples: eio: mark unused parameter as such

Really shutting up warnings here to see what else the compiler has to say.
This commit is contained in:
Stefan Schmidt 2016-06-06 15:16:36 +02:00
parent c840162f09
commit 68a0ec70d7
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ void error_cb(void *data, Eina_Error error)
eo_unref(job);
}
void filter_cb(void *data, const Eo_Event *event)
void filter_cb(void *data EINA_UNUSED, const Eo_Event *event)
{
Eio_Filter_Name_Data *event_info = event->info;
static Eina_Bool should_filter = EINA_FALSE;
@ -40,7 +40,7 @@ void filter_cb(void *data, const Eo_Event *event)
}
// Progress used to be the "Eio_Main_Cb" family of callbacks in the legacy API.
void progress_cb(void *data, const char *filename)
void progress_cb(void *data EINA_UNUSED, const char *filename)
{
EINA_SAFETY_ON_NULL_RETURN(filename);
printf("%s listing filename: %s\n", __FUNCTION__, filename);

View File

@ -11,7 +11,7 @@
#include <Ecore.h>
Eina_Bool
sentry_cb(void *data, const Eo_Event *event)
sentry_cb(void *data EINA_UNUSED, const Eo_Event *event)
{
Eio_Sentry_Event *event_info = event->info;