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:
Hugo Landau 2023-12-19 07:34:59 +00:00
parent f41ab29c78
commit 04c561ce4b

View File

@ -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)