eolian: Fix odd syntax (remove EINA_UNUSED)

This commit is contained in:
Jean-Philippe Andre 2017-11-13 22:39:02 +09:00
parent 289a4e3aaa
commit 8f2e491573
1 changed files with 1 additions and 1 deletions

View File

@ -439,7 +439,7 @@ eolian_typedecl_free_func_get(const Eolian_Typedecl *tp)
}
EAPI const Eolian_Function *
eolian_typedecl_function_pointer_get(EINA_UNUSED const Eolian_Typedecl *tp)
eolian_typedecl_function_pointer_get(const Eolian_Typedecl *tp)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(tp, NULL);
if (eolian_typedecl_type_get(tp) != EOLIAN_TYPEDECL_FUNCTION_POINTER)