From f28428972045abd7d3f778525847d81c4d705731 Mon Sep 17 00:00:00 2001 From: vvb2060 Date: Wed, 29 May 2024 01:11:44 +0800 Subject: [PATCH] openssl: fix %-specifier in infof() call Closes #13816 --- lib/vtls/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index fc0c1c35f5..98fa962ab0 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -3968,7 +3968,7 @@ CURLcode Curl_ossl_ctx_init(struct ossl_ctx *octx, # endif else { trying_ech_now = 1; - infof(data, "ECH: imported ECHConfigList of length %ld", elen); + infof(data, "ECH: imported ECHConfigList of length %zu", elen); } } else {