jpeg pushed a commit to branch master.

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

commit b3435831f71a22c738849ddfa407e9bd7a0f4625
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Tue Dec 5 14:48:29 2017 +0900

    c#: Fix test case
    
    return -1 in a void function breaks the build for me (clang)
---
 src/tests/efl_mono/libefl_mono_native_test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/efl_mono/libefl_mono_native_test.c 
b/src/tests/efl_mono/libefl_mono_native_test.c
index 09d0cd418c..0b73d7e76b 100644
--- a/src/tests/efl_mono/libefl_mono_native_test.c
+++ b/src/tests/efl_mono/libefl_mono_native_test.c
@@ -3047,7 +3047,7 @@ void _test_testing_set_callback(EINA_UNUSED Eo *obj, 
Test_Testing_Data *pd, void
    if (!pd)
      {
         EINA_LOG_ERR("Null private data");
-        return -1;
+        return;
      }
 
    if (pd->free_cb)

-- 


Reply via email to