desklock - fix warn with return no value where val needed

This commit is contained in:
Carsten Haitzler 2019-01-11 11:18:42 +00:00
parent 493bedd5cf
commit b11dd17594
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}