Skip to content

Commit

Permalink
Merge pull request wolfSSL#8127 from anhu/percentd
Browse files Browse the repository at this point in the history
added a missing %d
  • Loading branch information
dgarske authored Oct 30, 2024
2 parents d147968 + 54dc832 commit 807975c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wolfcrypt/src/random.c
Original file line number Diff line number Diff line change
Expand Up @@ -1702,7 +1702,7 @@ static int _InitRng(WC_RNG* rng, byte* nonce, word32 nonceSz,

if (ret != 0) {
#if defined(DEBUG_WOLFSSL)
WOLFSSL_MSG_EX("_InitRng failed. err = ", ret);
WOLFSSL_MSG_EX("_InitRng failed. err = %d", ret);
#endif
}
else {
Expand Down

0 comments on commit 807975c

Please sign in to comment.