zmike pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5e9b30153399014ff0aa52922f8460c7769eb741
commit 5e9b30153399014ff0aa52922f8460c7769eb741 Author: Vincent Torri <vincent.to...@gmail.com> Date: Thu Sep 12 14:46:06 2019 -0400 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 --- src/tests/ecore/efl_app_test_promise.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tests/ecore/efl_app_test_promise.c b/src/tests/ecore/efl_app_test_promise.c index 8a7b3edd16..e1a74d6ab5 100644 --- a/src/tests/ecore/efl_app_test_promise.c +++ b/src/tests/ecore/efl_app_test_promise.c @@ -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 --