From b11dd175942a6b9d1faaadeecc6816a50bbfea1c Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Fri, 11 Jan 2019 11:18:42 +0000 Subject: [PATCH] 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); }