use consistent types

This commit is contained in:
okan
2014-01-03 15:29:06 +00:00
parent 08342471c8
commit 43ccf4eae0
9 changed files with 43 additions and 43 deletions

View File

@ -37,7 +37,7 @@ screen_init(int which)
Window *wins, w0, w1;
XWindowAttributes winattr;
XSetWindowAttributes rootattr;
u_int nwins, i;
unsigned int nwins, i;
sc = xcalloc(1, sizeof(*sc));
@ -105,7 +105,7 @@ screen_updatestackingorder(struct screen_ctx *sc)
{
Window *wins, w0, w1;
struct client_ctx *cc;
u_int nwins, i, s;
unsigned int nwins, i, s;
if (!XQueryTree(X_Dpy, sc->rootwin, &w0, &w1, &wins, &nwins))
return;