e comp - set rects to null to silence compiler warning

even though n is 0 and we don't use rects, compiler doesn't know, so
to avoid noise - set to null so we can focus on warnings of real errors.
This commit is contained in:
Carsten Haitzler 2015-09-10 22:13:57 +09:00
parent 530c8613c8
commit cfdd8a47ef
1 changed files with 1 additions and 1 deletions

View File

@ -2780,7 +2780,7 @@ static Eina_Bool
_e_comp_x_damage(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore_X_Event_Damage *ev)
{
E_Client *ec;
Ecore_X_Rectangle *rects;
Ecore_X_Rectangle *rects = NULL;
int n = 0;
ec = _e_comp_x_client_find_by_damage(ev->damage);