From 389d15fa459b805d5181baecbec7832665b6cece Mon Sep 17 00:00:00 2001 From: Mattia Moffa Date: Tue, 21 Apr 2026 03:30:39 +0200 Subject: [PATCH] Fix compile error --- tests/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api.c b/tests/api.c index 5618982669..35ddd98371 100644 --- a/tests/api.c +++ b/tests/api.c @@ -10215,7 +10215,7 @@ static int test_wolfSSL_clear_secure_renegotiation(void) !defined(NO_WOLFSSL_CLIENT) && !defined(NO_TLS) WOLFSSL_CTX *ctx = wolfSSL_CTX_new(wolfSSLv23_client_method()); WOLFSSL *ssl = wolfSSL_new(ctx); - int support; + long support; ExpectNotNull(ctx); ExpectNotNull(ssl);