Skip to content

Commit

Permalink
Merge pull request #7526 from lealem47/addCast
Browse files Browse the repository at this point in the history
Fix for type conversion error
  • Loading branch information
dgarske authored May 14, 2024
2 parents 0e2bb28 + f4275d5 commit 7526f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wolfcrypt/test/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -24909,7 +24909,7 @@ WOLFSSL_TEST_SUBROUTINE wc_test_ret_t pkcs12_test(void)

WOLFSSL_ENTER("pkcs12_test");

pkcs12 = wc_PKCS12_create(pass, XSTRLEN(pass),
pkcs12 = wc_PKCS12_create(pass, (word32)XSTRLEN(pass),
(char*)"friendlyName" /* not used currently */,
(byte*)server_key_der_2048, sizeof_server_key_der_2048,
(byte*)server_cert_der_2048, sizeof_server_cert_der_2048,
Expand Down

0 comments on commit 7526f52

Please sign in to comment.