From 04c561ce4b51a00ddd24d2e5d66d2c12a82639c2 Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Tue, 19 Dec 2023 07:34:59 +0000 Subject: 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) --- ssl/quic/quic_port.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/quic/quic_port.c b/ssl/quic/quic_port.c index 9976862138..46ca22cc3b 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) -- cgit v1.2.3