From 52e5d7145ed65441fb6f23b78cf74f160b5bce86 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 9 Mar 2026 01:45:36 +0100 Subject: [PATCH] fixes --- 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 abb30a0ff7..4fb9a96960 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -2065,7 +2065,7 @@ static CURLcode ossl_verifyhost(struct Curl_easy *data, break; default: DEBUGASSERT(0); - failf(data, "unexpected ssl peer type: %u", peer->type); + failf(data, "unexpected ssl peer type: %d", (int)peer->type); return CURLE_PEER_FAILED_VERIFICATION; }