Fixed casting issue

This commit is contained in:
Lealem Amedie
2021-06-01 09:46:30 -06:00
parent 2db233d10e
commit 03a5395b53

View File

@ -5500,8 +5500,8 @@ static void test_wolfSSL_PKCS12(void)
bytes = (int)XFREAD(buffer, 1, sizeof(buffer), f); bytes = (int)XFREAD(buffer, 1, sizeof(buffer), f);
XFCLOSE(f); XFCLOSE(f);
goodPswLen = XSTRLEN(goodPsw); goodPswLen = (int)XSTRLEN(goodPsw);
badPswLen = XSTRLEN(badPsw); badPswLen = (int)XSTRLEN(badPsw);
bio = BIO_new_mem_buf((void*)buffer, bytes); bio = BIO_new_mem_buf((void*)buffer, bytes);
AssertNotNull(bio); AssertNotNull(bio);