aboutsummaryrefslogtreecommitdiffstats
path: root/xevents.c
diff options
context:
space:
mode:
authorokan2014-01-03 15:29:06 +0000
committerokan2014-01-03 15:29:06 +0000
commit7c3d7c7e009aba5952f235258aecebf4a42fcd3a (patch)
tree7970da959e352c005af1dbe5fd3562f4e58088f5 /xevents.c
parentfa1e0bfcb82d655544296d192c8df094a7895039 (diff)
downloadcwm-7c3d7c7e009aba5952f235258aecebf4a42fcd3a.tar.gz
use consistent types
Diffstat (limited to 'xevents.c')
-rw-r--r--xevents.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xevents.c b/xevents.c
index f53122b..428c0db 100644
--- a/xevents.c
+++ b/xevents.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: xevents.c,v 1.103 2014/01/02 22:43:55 okan Exp $
+ * $OpenBSD: xevents.c,v 1.104 2014/01/03 15:29:06 okan Exp $
*/
/*
@@ -265,7 +265,7 @@ xev_handle_keypress(XEvent *ee)
struct client_ctx *cc = NULL, fakecc;
struct keybinding *kb;
KeySym keysym, skeysym;
- u_int modshift;
+ unsigned int modshift;
keysym = XkbKeycodeToKeysym(X_Dpy, e->keycode, 0, 0);
skeysym = XkbKeycodeToKeysym(X_Dpy, e->keycode, 0, 1);
@@ -308,7 +308,7 @@ xev_handle_keyrelease(XEvent *ee)
XKeyEvent *e = &ee->xkey;
struct screen_ctx *sc;
KeySym keysym;
- u_int i;
+ unsigned int i;
sc = screen_fromroot(e->root);