examples/filemvc: Mark unused parameter with EINA_UNUSED

This commit is contained in:
Christopher Michael 2019-02-26 14:13:53 -05:00
parent 493b095add
commit 1c4c43ceb5
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ _cleanup_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void
}
static int
_filter_cb(void *data EINA_UNUSED, Efl_Io_Model *model, Eina_File_Direct_Info *info)
_filter_cb(void *data EINA_UNUSED, Efl_Io_Model *model EINA_UNUSED, Eina_File_Direct_Info *info)
{
if (info->type == EINA_FILE_DIR && info->path[info->name_start] != '.') return 1;