Skip to content

Commit

Permalink
Fix for type conversion error
Browse files Browse the repository at this point in the history
  • Loading branch information
Lealem Amedie committed May 13, 2024
1 parent 6b79e53 commit f4275d5
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 @@ -24883,7 +24883,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 f4275d5

Please sign in to comment.