c#: Fix test case

return -1 in a void function breaks the build for me (clang)
This commit is contained in:
Jean-Philippe Andre 2017-12-05 14:48:29 +09:00
parent b867b6aa24
commit b3435831f7
1 changed files with 1 additions and 1 deletions

View 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)