Skip to content

Commit

Permalink
Bump input-linux, input-linux-sys, nix
Browse files Browse the repository at this point in the history
  • Loading branch information
davide125 authored and WhatAmISupposedToPutHere committed Oct 12, 2024
1 parent 23fe535 commit 18a4e0e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 15 deletions.
29 changes: 18 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ drm = "0.11.1"
anyhow = "1"
input = "0.8"
libc = "0.2"
input-linux = { version = "0.6", features = ["serde"] }
input-linux-sys = "0.8"
nix = { version = "0.27", features = ["event", "signal", "inotify"] }
input-linux = { version = "0.7", features = ["serde"] }
input-linux-sys = "0.9"
nix = { version = "0.29", features = ["event", "signal", "inotify"] }
privdrop = "0.5.3"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ fn real_main(drm: &mut DrmBackend) {
needs_complete_redraw = false;
}

match epoll.wait(&mut [EpollEvent::new(EpollFlags::EPOLLIN, 0)], next_timeout_ms as isize) {
match epoll.wait(&mut [EpollEvent::new(EpollFlags::EPOLLIN, 0)], next_timeout_ms as u16) {
Err(Errno::EINTR) | Ok(_) => { 0 },
e => e.unwrap(),
};
Expand Down

0 comments on commit 18a4e0e

Please sign in to comment.