diff options
author | okan | 2014-01-03 15:29:06 +0000 |
---|---|---|
committer | okan | 2014-01-03 15:29:06 +0000 |
commit | 7c3d7c7e009aba5952f235258aecebf4a42fcd3a (patch) | |
tree | 7970da959e352c005af1dbe5fd3562f4e58088f5 /screen.c | |
parent | fa1e0bfcb82d655544296d192c8df094a7895039 (diff) | |
download | cwm-7c3d7c7e009aba5952f235258aecebf4a42fcd3a.tar.gz |
use consistent types
Diffstat (limited to 'screen.c')
-rw-r--r-- | screen.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: screen.c,v 1.53 2013/12/13 22:39:13 okan Exp $ + * $OpenBSD: screen.c,v 1.54 2014/01/03 15:29:06 okan Exp $ */ #include <sys/param.h> @@ -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; |