1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

chore: run cargo +nightly clippy --fix

This commit is contained in:
Niyaz Nigmatullin 2022-11-15 17:57:08 +02:00
parent c3218740dc
commit fdd6a05259
9 changed files with 31 additions and 31 deletions

View file

@ -8,7 +8,7 @@ use crate::common::util::*;
#[cfg(unix)]
fn check_termination(result: &ExitStatus) {
assert_eq!(result.signal(), Some(libc::SIGPIPE as i32));
assert_eq!(result.signal(), Some(libc::SIGPIPE));
}
#[cfg(not(unix))]