Skip to content

Commit

Permalink
churn: remove unused crate and cleanup warning
Browse files Browse the repository at this point in the history
  • Loading branch information
fishman committed Oct 26, 2024
1 parent 95312d6 commit 51cebe0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ evdev = { version = "0.12.2", features = ["tokio"] }
futures = { version = "0.3.29", features = ["compat"] }
inotify = "0.10.2"
lazy_static = "1.5.0"
libc = "0.2.161"
log = "0.4.20"
mlua = { version = "0.9.1", features = ["async", "luau", "send"] }
nix = { version = "0.29.0", features = ["fs", "poll", "signal", "time"] }
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ impl WaylandRunner {
for (_, (_, notification)) in map.iter() {
notification.destroy();
}
self.connection.flush();
let _ = self.connection.flush();
}
self.tx.send(Request::LuaReload).await.unwrap();
}
Expand Down Expand Up @@ -754,7 +754,7 @@ impl WaylandRunner {
let _ = self.inhibit_sleep();
}
Request::Flush => {
self.connection.flush();
let _ = self.connection.flush();
}
}
}
Expand Down

0 comments on commit 51cebe0

Please # to comment.