summaryrefslogtreecommitdiff
path: root/app/cwm/xevents.c
diff options
context:
space:
mode:
authorOkan Demirmen <okan@cvs.openbsd.org>2013-05-10 16:32:49 +0000
committerOkan Demirmen <okan@cvs.openbsd.org>2013-05-10 16:32:49 +0000
commit1b9360e28688f6746e95b80b50022c598513befd (patch)
tree91db8ca4d486df7b9e7b17de17f6ed558c1d2f11 /app/cwm/xevents.c
parent1a93c6ae799a467b1d3454cbf023136e8341433e (diff)
more type fixes for mask/button
Diffstat (limited to 'app/cwm/xevents.c')
-rw-r--r--app/cwm/xevents.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/cwm/xevents.c b/app/cwm/xevents.c
index 8582801f6..006e3c291 100644
--- a/app/cwm/xevents.c
+++ b/app/cwm/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.74 2013/05/10 16:05:34 okan Exp $
+ * $OpenBSD: xevents.c,v 1.75 2013/05/10 16:32:48 okan Exp $
*/
/*
@@ -277,7 +277,7 @@ xev_handle_keypress(XEvent *ee)
struct client_ctx *cc = NULL, fakecc;
struct keybinding *kb;
KeySym keysym, skeysym;
- int modshift;
+ u_int modshift;
keysym = XkbKeycodeToKeysym(X_Dpy, e->keycode, 0, 0);
skeysym = XkbKeycodeToKeysym(X_Dpy, e->keycode, 0, 1);