From 9c218992491beb4929ca3369779956415f916ce1 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Thu, 21 May 2015 21:31:41 +0200 Subject: Fix the compilation on 32bits linux --- Cargo.toml | 2 +- src/api/x11/window.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bc97170..4f73636 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glutin" -version = "0.1.5" +version = "0.1.6" authors = ["tomaka "] description = "Cross-plaform OpenGL context provider." keywords = ["windowing", "opengl"] 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 }; -- cgit v1.2.3