From 14bf690caa082d839ccce1568dae663c6f2ede07 Mon Sep 17 00:00:00 2001 From: Steve Date: Wed, 1 Mar 2023 21:29:50 +0900 Subject: [PATCH] Fix build failure in pal_ssl (#82816) --- src/native/libs/System.Security.Cryptography.Native/pal_ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/native/libs/System.Security.Cryptography.Native/pal_ssl.c b/src/native/libs/System.Security.Cryptography.Native/pal_ssl.c index fbdf87b63e2e1..5ccd3b4888775 100644 --- a/src/native/libs/System.Security.Cryptography.Native/pal_ssl.c +++ b/src/native/libs/System.Security.Cryptography.Native/pal_ssl.c @@ -1051,7 +1051,7 @@ int32_t CryptoNative_SslSetAlpnProtos(SSL* ssl, const uint8_t* protos, uint32_t } else #else - (void)ctx; + (void)ssl; (void)protos; (void)protos_len; #endif