Skip to content

Commit

Permalink
Merge pull request wolfSSL#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 and jefferyq2 committed Jun 9, 2024
1 parent c391b52 commit b62725f
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 b62725f

Please sign in to comment.