efl_app_test_promise: fix warning (no returned value)

Test Plan: compilation

Reviewers: cedric, zmike, raster

Reviewed By: zmike

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9926
This commit is contained in:
Vincent Torri 2019-09-12 14:46:06 -04:00 committed by Mike Blumenkrantz
parent 1f24762fc4
commit 5e9b301533
1 changed files with 2 additions and 1 deletions

View File

@ -821,10 +821,11 @@ _eo_future1_ok(Eo *eo EINA_UNUSED, void *data EINA_UNUSED, const Eina_Value v)
}
static Eina_Value
_eo_future1_err(Eo *eo EINA_UNUSED, void *data EINA_UNUSED, Eina_Error err EINA_UNUSED)
_eo_future1_err(Eo *eo EINA_UNUSED, void *data EINA_UNUSED, Eina_Error err)
{
//Should not happen
fail_if(EINA_TRUE);
return eina_value_error_init(err);
}
static Eina_Value