Eolian: Fix clang warnings

Return proper type (NULL, not bool)
This commit is contained in:
Jean-Philippe Andre 2015-04-21 18:41:48 +09:00
parent 12b562482e
commit 92a844fd36
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ eolian_function_object_is_const(const Eolian_Function *fid)
EAPI const Eolian_Class *
eolian_function_class_get(const Eolian_Function *fid)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(fid, EINA_FALSE);
EINA_SAFETY_ON_NULL_RETURN_VAL(fid, NULL);
return fid->klass;
}