ecore_main: fix the invalid return value

Summary:
fix the invalid return value
@fix

Reviewers: Jaehyun_Cho, raster, Hermet

Reviewed By: Hermet

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7080
This commit is contained in:
Taehyub Kim 2018-09-21 14:46:50 +09:00 committed by Hermet Park
parent d702f714fe
commit d8182638f2
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ _ecore_try_add_to_call_list(Eo *obj EINA_UNUSED, Efl_Loop_Data *pd, Ecore_Fd_Han
static inline void
_throttle_do(Efl_Loop_Data *pd)
{
if (pd->throttle == 0) return
if (pd->throttle == 0) return;
eina_evlog("+throttle", NULL, 0.0, NULL);
usleep(pd->throttle);
eina_evlog("-throttle", NULL, 0.0, NULL);