diff options
Diffstat (limited to 'third_party/rust/neqo-crypto/src/agentio.rs')
-rw-r--r-- | third_party/rust/neqo-crypto/src/agentio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/rust/neqo-crypto/src/agentio.rs b/third_party/rust/neqo-crypto/src/agentio.rs index 7c57a0ef45..3beede5c12 100644 --- a/third_party/rust/neqo-crypto/src/agentio.rs +++ b/third_party/rust/neqo-crypto/src/agentio.rs @@ -29,7 +29,7 @@ const PR_FAILURE: PrStatus = prio::PRStatus::PR_FAILURE; /// Convert a pinned, boxed object into a void pointer. pub fn as_c_void<T: Unpin>(pin: &mut Pin<Box<T>>) -> *mut c_void { - (Pin::into_inner(pin.as_mut()) as *mut T).cast() + (std::ptr::from_mut::<T>(Pin::into_inner(pin.as_mut()))).cast() } /// A slice of the output. |