libinput: update to 0.4.1

This commit is contained in:
Victor Brekenfeld 2018-12-05 09:30:11 +01:00
parent aa2090c079
commit 8fbce616a6
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ winit = { version = "0.18.0", optional = true }
drm = { version = "^0.3.4", optional = true }
gbm = { version = "^0.4.0", optional = true, default-features = false, features = ["drm-support"] }
glium = { version = "0.19.0", optional = true, default-features = false }
input = { version = "0.4.0", optional = true }
input = { version = "0.4.1", optional = true }
udev = { version = "0.2.0", optional = true }
dbus = { version = "0.6.1", optional = true }
systemd = { version = "^0.2.0", optional = true }

View File

@ -594,7 +594,7 @@ impl<S: Session> libinput::LibinputInterface for LibinputSessionInterface<S> {
impl AsRawFd for LibinputInputBackend {
fn as_raw_fd(&self) -> RawFd {
unsafe { self.context.fd() }
self.context.as_raw_fd()
}
}