Added mut so glutin can compile on nightly.

This commit is contained in:
Esption 2015-05-08 06:35:38 -05:00
parent 28355a66f0
commit 0d10dda72a

View file

@ -193,7 +193,7 @@ impl<'a> Iterator for PollEventsIterator<'a> {
ffi::KeyPress | ffi::KeyRelease => {
use events::Event::{KeyboardInput, ReceivedCharacter};
use events::ElementState::{Pressed, Released};
let event: &mut ffi::XKeyEvent = unsafe { mem::transmute(&xev) };
let event: &mut ffi::XKeyEvent = unsafe { mem::transmute(&mut xev) };
if event.type_ == ffi::KeyPress {
let raw_ev: *mut ffi::XKeyEvent = event;