diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-05-10 15:44:44 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-05-10 15:44:44 +0000 |
commit | 5a3d5f234d075f539b9c33316fc7b112f73cb391 (patch) | |
tree | e261fd1f7a712f9f7d6624e90ccea17794f873e2 /app/cwm/xevents.c | |
parent | 771744e9bebbf24ee3d30e8e0dcb92425368d612 (diff) |
fix KeySym type
Diffstat (limited to 'app/cwm/xevents.c')
-rw-r--r-- | app/cwm/xevents.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/cwm/xevents.c b/app/cwm/xevents.c index 5118b9082..d6eb6733b 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.72 2013/04/29 00:56:48 okan Exp $ + * $OpenBSD: xevents.c,v 1.73 2013/05/10 15:44:43 okan Exp $ */ /* @@ -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(); |