mirror of
https://github.com/openssl/openssl.git
synced 2025-01-06 13:26:43 +08:00
QUIC PORT: Add explicit cast to get_time wrapper
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22674)
This commit is contained in:
parent
f41ab29c78
commit
04c561ce4b
@ -162,7 +162,7 @@ OSSL_TIME ossl_quic_port_get_time(QUIC_PORT *port)
|
|||||||
|
|
||||||
static OSSL_TIME get_time(void *port)
|
static OSSL_TIME get_time(void *port)
|
||||||
{
|
{
|
||||||
return ossl_quic_port_get_time(port);
|
return ossl_quic_port_get_time((QUIC_PORT *)port);
|
||||||
}
|
}
|
||||||
|
|
||||||
int ossl_quic_port_get_rx_short_dcid_len(const QUIC_PORT *port)
|
int ossl_quic_port_get_rx_short_dcid_len(const QUIC_PORT *port)
|
||||||
|
Loading…
Reference in New Issue
Block a user