From cfbdc5dd14bf9fc969c9eb76216ab59a4ae64ba4 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 4 Sep 2023 16:24:05 +0200 Subject: [PATCH] Include #include "internal/numbers.h" in ssl/quic/quic_cfq.c It's needed for platforms that don't define UINT64_MAX and similar macros Reviewed-by: Dmitry Belyavskiy Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/21951) --- ssl/quic/quic_cfq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ssl/quic/quic_cfq.c b/ssl/quic/quic_cfq.c index 25ac36e3482..f9d66281cdf 100644 --- a/ssl/quic/quic_cfq.c +++ b/ssl/quic/quic_cfq.c @@ -8,6 +8,7 @@ */ #include "internal/quic_cfq.h" +#include "internal/numbers.h" typedef struct quic_cfq_item_ex_st QUIC_CFQ_ITEM_EX; -- 2.47.3