From: Hugo Landau Date: Tue, 19 Dec 2023 07:34:59 +0000 (+0000) Subject: QUIC PORT: Add explicit cast to get_time wrapper X-Git-Tag: openssl-3.3.0-alpha1~396 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=04c561ce4b51a00ddd24d2e5d66d2c12a82639c2;p=thirdparty%2Fopenssl.git QUIC PORT: Add explicit cast to get_time wrapper Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/22674) --- diff --git a/ssl/quic/quic_port.c b/ssl/quic/quic_port.c index 9976862138c..46ca22cc3b1 100644 --- a/ssl/quic/quic_port.c +++ b/ssl/quic/quic_port.c @@ -162,7 +162,7 @@ OSSL_TIME ossl_quic_port_get_time(QUIC_PORT *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)