sanitize bool return of _e_comp_object_animating_end()

This commit is contained in:
Mike Blumenkrantz 2015-06-19 16:25:33 -04:00
parent 0f926d2ae9
commit 2a137d4fbe
1 changed files with 1 additions and 1 deletions

View File

@ -681,7 +681,7 @@ _e_comp_object_animating_end(E_Comp_Object *cw)
cw->showing = 0;
UNREFD(cw->ec, 2);
/* remove ref from animation start, account for possibility of deletion from unref */
return e_object_unref(E_OBJECT(cw->ec));
return !!e_object_unref(E_OBJECT(cw->ec));
}
}
return EINA_TRUE;