Skip to content

Commit

Permalink
Remove use of io::ErrorKind::Other in std
Browse files Browse the repository at this point in the history
The documentation states that this `ErrorKind` is not used by the
standard library. Instead, `io::ErrorKind::Uncategorized` should be
used.
  • Loading branch information
Patiga committed Sep 20, 2022
1 parent 2019147 commit 04c1087
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/std/src/sys/unix/process/process_unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -822,14 +822,14 @@ impl crate::os::linux::process::ChildExt for crate::process::Child {
self.handle
.pidfd
.as_ref()
.ok_or_else(|| Error::new(ErrorKind::Other, "No pidfd was created."))
.ok_or_else(|| Error::new(ErrorKind::Uncategorized, "No pidfd was created."))
}

fn take_pidfd(&mut self) -> io::Result<PidFd> {
self.handle
.pidfd
.take()
.ok_or_else(|| Error::new(ErrorKind::Other, "No pidfd was created."))
.ok_or_else(|| Error::new(ErrorKind::Uncategorized, "No pidfd was created."))
}
}

Expand Down

0 comments on commit 04c1087

Please sign in to comment.