aboutsummaryrefslogtreecommitdiffstats
path: root/xevents.c
diff options
context:
space:
mode:
authorokan2013-05-10 16:32:47 +0000
committerokan2013-05-10 16:32:47 +0000
commit4fd30cca079892e19dd55a6d2c568c383edd7b06 (patch)
tree2b71e23d5684579bccf811e2893aadc8f262a787 /xevents.c
parent3f767d62ea17d201c682e1a401fb4d493350bc02 (diff)
downloadcwm-4fd30cca079892e19dd55a6d2c568c383edd7b06.tar.gz
more type fixes for mask/button
Diffstat (limited to '')
-rw-r--r--xevents.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xevents.c b/xevents.c
index 8582801..006e3c2 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.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);