From 6eda4e7b46593ea9ba6aaac86a426d2225960511 Mon Sep 17 00:00:00 2001 From: Eric Blankenhorn Date: Fri, 14 Feb 2020 08:11:45 -0600 Subject: [PATCH] Fix in test --- tests/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api.c b/tests/api.c index c1043bc5b..39fccc391 100644 --- a/tests/api.c +++ b/tests/api.c @@ -23233,7 +23233,7 @@ static void test_wolfSSL_ERR_print_errors(void) defined(DEBUG_WOLFSSL) static int test_wolfSSL_error_cb(const char *str, size_t len, void *u) { - wolfSSL_BIO_write((BIO*)u, str, len); + wolfSSL_BIO_write((BIO*)u, str, (int)len); return 0; } #endif