From b3435831f71a22c738849ddfa407e9bd7a0f4625 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Tue, 5 Dec 2017 14:48:29 +0900 Subject: [PATCH] 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 09d0cd4..0b73d7e 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) -- 2.7.4