Fix old todo thanks to new rust version

This commit is contained in:
Travis Burtrum 2020-07-11 00:59:35 -04:00
parent 432e35cb6a
commit 6c4e4392b4
1 changed files with 1 additions and 2 deletions

View File

@ -8,8 +8,7 @@ use crate::{Error,Result};
ioctl_write_ptr!(eviocgrab, b'E', 0x90, c_int);
// TODO: use size_of_input_event instead of hard-coding 24.
const SIZE_OF_INPUT_EVENT: usize = 24;//mem::size_of::<input_event>();
const SIZE_OF_INPUT_EVENT: usize = mem::size_of::<input_event>();
pub struct InputDevice {
device_file: File,