raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=b11dd175942a6b9d1faaadeecc6816a50bbfea1c
commit b11dd175942a6b9d1faaadeecc6816a50bbfea1c Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Fri Jan 11 11:18:42 2019 +0000 desklock - fix warn with return no value where val needed --- src/bin/e_desklock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_desklock.c b/src/bin/e_desklock.c index fa2a47ec6..c7dca0eb9 100644 --- a/src/bin/e_desklock.c +++ b/src/bin/e_desklock.c @@ -380,7 +380,7 @@ E_API int e_desklock_show(Eina_Bool suspend) { _e_desklock_want = EINA_TRUE; - if ((_e_desklock_block > 0) && (!desklock_manual)) return; + if ((_e_desklock_block > 0) && (!desklock_manual)) return EINA_FALSE; return _desklock_show_internal(suspend); } --