c#: Fix test case
authorJean-Philippe Andre <jp.andre@samsung.com>
Tue, 5 Dec 2017 05:48:29 +0000 (14:48 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Tue, 5 Dec 2017 06:06:34 +0000 (15:06 +0900)
return -1 in a void function breaks the build for me (clang)

src/tests/efl_mono/libefl_mono_native_test.c

index 09d0cd4..0b73d7e 100644 (file)
@@ -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)