bugfix: infinite printing of SLEEP with release build

T690
This commit is contained in:
Mike Blumenkrantz 2013-12-24 20:30:51 -05:00
parent 8138921739
commit a00b8354b5
1 changed files with 1 additions and 2 deletions

View File

@ -1875,12 +1875,11 @@ _e_main_cb_idle_before(void *data __UNUSED__)
static Eina_Bool static Eina_Bool
_e_main_cb_idle_after(void *data __UNUSED__) _e_main_cb_idle_after(void *data __UNUSED__)
{ {
static int first_idle; static int first_idle = 1;
edje_freeze(); edje_freeze();
#ifdef E18_RELEASE_BUILD #ifdef E18_RELEASE_BUILD
first_idle = 1;
if (first_idle) if (first_idle)
{ {
TS("SLEEP"); TS("SLEEP");