mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 14:52:41 +00:00
Merge pull request #3739 from jeckersb/nice-unsafe-nit
nice: Move call to Errno::clear() outside of unsafe block
This commit is contained in:
commit
9a1b4b537a
1 changed files with 2 additions and 4 deletions
|
@ -37,10 +37,8 @@ const USAGE: &str = "{} [OPTIONS] [COMMAND [ARGS]]";
|
|||
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
||||
let matches = uu_app().try_get_matches_from(args).with_exit_code(125)?;
|
||||
|
||||
let mut niceness = unsafe {
|
||||
nix::errno::Errno::clear();
|
||||
libc::getpriority(PRIO_PROCESS, 0)
|
||||
};
|
||||
nix::errno::Errno::clear();
|
||||
let mut niceness = unsafe { libc::getpriority(PRIO_PROCESS, 0) };
|
||||
if Error::last_os_error().raw_os_error().unwrap() != 0 {
|
||||
return Err(USimpleError::new(
|
||||
125,
|
||||
|
|
Loading…
Reference in a new issue