aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/x11
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-05-21 21:31:41 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-05-21 21:31:41 +0200
commit9c218992491beb4929ca3369779956415f916ce1 (patch)
tree7385d151cf00d0ea0fe240e69550c2c0e58d9722 /src/api/x11
parent0a1fe4b8aadd25a91b73c1d06a8854a2c21160a1 (diff)
downloadglutin-9c218992491beb4929ca3369779956415f916ce1.tar.gz
glutin-9c218992491beb4929ca3369779956415f916ce1.zip
Fix the compilation on 32bits linux
Diffstat (limited to 'src/api/x11')
-rw-r--r--src/api/x11/window.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/x11/window.rs b/src/api/x11/window.rs
index 4582c3e..38838f5 100644
--- a/src/api/x11/window.rs
+++ b/src/api/x11/window.rs
@@ -202,7 +202,7 @@ impl<'a> Iterator for PollEventsIterator<'a> {
(self.window.x.display.xlib.XKeycodeToKeysym)(self.window.x.display.display, event.keycode as ffi::KeyCode, 0)
};
- if (ffi::XK_KP_Space as u64 <= keysym) && (keysym <= ffi::XK_KP_9 as u64) {
+ if (ffi::XK_KP_Space as libc::c_ulong <= keysym) && (keysym <= ffi::XK_KP_9 as libc::c_ulong) {
keysym = kp_keysym
};