jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=92a844fd36bc20b51129bb020d8b4f23a73ff0a8

commit 92a844fd36bc20b51129bb020d8b4f23a73ff0a8
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Tue Apr 21 18:41:48 2015 +0900

    Eolian: Fix clang warnings
    
    Return proper type (NULL, not bool)
---
 src/lib/eolian/database_function_api.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/eolian/database_function_api.c 
b/src/lib/eolian/database_function_api.c
index fbe1e1c..fd78fef 100644
--- a/src/lib/eolian/database_function_api.c
+++ b/src/lib/eolian/database_function_api.c
@@ -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;
 }
 

-- 


Reply via email to