From cfdd8a47efc9a4d41a1e1178b6a9452b89dd00c1 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 10 Sep 2015 22:13:57 +0900 Subject: [PATCH] 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. --- src/bin/e_comp_x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 599090a..72535c6 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -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); -- 2.7.4