aboutsummaryrefslogtreecommitdiffstats
path: root/xevents.c
diff options
context:
space:
mode:
authorokan2013-05-10 15:44:43 +0000
committerokan2013-05-10 15:44:43 +0000
commitce107b2e3e59cb0c025f6c44227cffa0cbb19a1d (patch)
treee61c4765f36e90e9a274049e48cafe8ab8c4ce83 /xevents.c
parenta50506d56ef1049b99eade7f69a1acb61ea192d1 (diff)
downloadcwm-ce107b2e3e59cb0c025f6c44227cffa0cbb19a1d.tar.gz
fix KeySym type
Diffstat (limited to 'xevents.c')
-rw-r--r--xevents.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/xevents.c b/xevents.c
index 5118b90..d6eb673 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.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();