Skip to content

Commit

Permalink
more type fiddling
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Theil <[email protected]>
  • Loading branch information
thillux committed Oct 12, 2023
1 parent 11f2721 commit aeeaf6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openssl/src/x509/sbgp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ impl IPAddressFamily {
16,
);
r.push((
Self::data_to_ip_addr(min.assume_init(), size)?,
Self::data_to_ip_addr(max.assume_init(), size)?,
Self::data_to_ip_addr(min.assume_init(), size.try_into().unwrap())?,
Self::data_to_ip_addr(max.assume_init(), size.try_into().unwrap())?,
))
}
}
Expand Down

0 comments on commit aeeaf6d

Please sign in to comment.