fix KeySym type

This commit is contained in:
okan
2013-05-10 15:44:43 +00:00
parent 5f06e5a8ca
commit 457938fbd7
3 changed files with 7 additions and 6 deletions

View File

@@ -322,7 +322,8 @@ xev_handle_keyrelease(XEvent *ee)
XKeyEvent *e = &ee->xkey;
struct screen_ctx *sc;
struct client_ctx *cc;
int i, keysym;
KeySym keysym;
int i;
sc = screen_fromroot(e->root);
cc = client_current();