From f34e659ca7a8f169ba26f4ace13c3b2885888847 Mon Sep 17 00:00:00 2001 From: okan Date: Tue, 23 Jan 2018 16:18:59 +0000 Subject: Fix wins comparison declaration since it's unsigned from XQueryTree(). --- screen.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/screen.c b/screen.c index 5887784..5025899 100644 --- a/screen.c +++ b/screen.c @@ -37,7 +37,8 @@ screen_init(int which) struct screen_ctx *sc; Window *wins, w0, w1, active = None; XSetWindowAttributes rootattr; - unsigned int nwins, i; + unsigned int nwins, w; + int i; sc = xmalloc(sizeof(*sc)); @@ -77,8 +78,8 @@ screen_init(int which) /* Deal with existing clients. */ if (XQueryTree(X_Dpy, sc->rootwin, &w0, &w1, &wins, &nwins)) { - for (i = 0; i < nwins; i++) - (void)client_init(wins[i], sc, (active == wins[i])); + for (w = 0; w < nwins; w++) + (void)client_init(wins[w], sc, (active == wins[w])); XFree(wins); } -- cgit 1.4.1