Fix in test

This commit is contained in:
Eric Blankenhorn
2020-02-14 08:11:45 -06:00
parent 95f973a5be
commit 6eda4e7b46

View File

@ -23233,7 +23233,7 @@ static void test_wolfSSL_ERR_print_errors(void)
defined(DEBUG_WOLFSSL) defined(DEBUG_WOLFSSL)
static int test_wolfSSL_error_cb(const char *str, size_t len, void *u) 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; return 0;
} }
#endif #endif