Fix nonzeros not being bit-opable (windows)

This commit is contained in:
Félix Saparelli 2021-10-22 05:55:28 +13:00
parent 963cd68cc4
commit 5c012c5b0c
No known key found for this signature in database
GPG Key ID: B948C4BAE44FC474
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ impl From<ExitStatus> for ProcessEnd {
fn from(es: ExitStatus) -> Self {
match es.code().map(NonZeroI32::try_from) {
None | Some(Err(_)) => Self::Success,
Some(Ok(code)) if code & 0x80000000 != 0 => Self::Exception(code),
Some(Ok(code)) if code.get() & 0x80000000 != 0 => Self::Exception(code),
Some(Ok(code)) => Self::ExitError(code.into()),
}
}