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 committed by Mike Blumenkrantz
parent 714353be47
commit b79fde5de7
1 changed files with 1 additions and 1 deletions

View File

@ -2678,7 +2678,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);