Chore: Cargo clippy

This commit is contained in:
Gijs Burghoorn 2023-06-26 18:20:30 +02:00
parent fb728787f7
commit bb54e11c4a

View file

@ -107,7 +107,7 @@ impl LemursChild {
}
pub fn send_sigterm(&self) -> io::Result<()> {
let i = unsafe { libc::kill(self.id() as libc::pid_t, libc::SIGTERM) };
unsafe { libc::kill(self.id() as libc::pid_t, libc::SIGTERM) };
Ok(())
}