eina iterator test - warn - fix prototype of cb func to have right params

fix warning. wrong func prototype for cb... ad void *data param at end.
This commit is contained in:
Carsten Haitzler 2018-11-07 13:35:22 +00:00
parent ba372625a9
commit f447bc1316
1 changed files with 1 additions and 1 deletions

View File

@ -453,7 +453,7 @@ struct _Eina_Rbtree_Int
};
static Eina_Rbtree_Direction
eina_rbtree_int_cmp(const Eina_Rbtree_Int *left, const Eina_Rbtree_Int *right)
eina_rbtree_int_cmp(const Eina_Rbtree_Int *left, const Eina_Rbtree_Int *right, void *data EINA_UNUSED)
{
fail_if(!left);
fail_if(!right);