aboutsummaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
authorokan2014-01-03 15:29:06 +0000
committerokan2014-01-03 15:29:06 +0000
commit7c3d7c7e009aba5952f235258aecebf4a42fcd3a (patch)
tree7970da959e352c005af1dbe5fd3562f4e58088f5 /screen.c
parentfa1e0bfcb82d655544296d192c8df094a7895039 (diff)
downloadcwm-7c3d7c7e009aba5952f235258aecebf4a42fcd3a.tar.gz
use consistent types
Diffstat (limited to '')
-rw-r--r--screen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/screen.c b/screen.c
index 11ff286..e8f7e24 100644
--- a/screen.c
+++ b/screen.c
@@ -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;