summary refs log tree commit diff
path: root/screen.c
diff options
context:
space:
mode:
authorokan <okan>2014-01-03 15:29:06 +0000
committerokan <okan>2014-01-03 15:29:06 +0000
commit43ccf4eae0f0f5c50495834e29f93671468a7cfe (patch)
treed6f6f2f0b1146030cf06f1fe9d77d64a555ecb0c /screen.c
parent08342471c86ca88dbfe71fffa55697f92378ff76 (diff)
downloadcwm-43ccf4eae0f0f5c50495834e29f93671468a7cfe.tar.gz
cwm-43ccf4eae0f0f5c50495834e29f93671468a7cfe.tar.xz
cwm-43ccf4eae0f0f5c50495834e29f93671468a7cfe.zip
use consistent types
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/screen.c b/screen.c
index 757232e..ed8606c 100644
--- a/screen.c
+++ b/screen.c
@@ -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;