ecore_main: fix the invalid return value
authorTaehyub Kim <taehyub.kim@samsung.com>
Fri, 21 Sep 2018 05:46:50 +0000 (14:46 +0900)
committerYeongjong Lee <yj34.lee@samsung.com>
Fri, 28 Sep 2018 01:23:52 +0000 (10:23 +0900)
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

src/lib/ecore/ecore_main.c

index 3c9ff53..8b96dc6 100644 (file)
@@ -268,7 +268,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;
    //TIZEN_ONLY(20180628): apply ttrace log system
    //eina_evlog("+throttle", NULL, 0.0, NULL);
    usleep(pd->throttle);