From 7a6e851a8243047c92dc9cfd8e9153135c5eb4a5 Mon Sep 17 00:00:00 2001 From: billphipps <126489738+billphipps@users.noreply.github.com> Date: Fri, 25 Aug 2023 13:59:23 -0400 Subject: [PATCH] Corrected print format string. --- wolfcrypt/src/cryptocb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/cryptocb.c b/wolfcrypt/src/cryptocb.c index a13abc37f..42d784c76 100644 --- a/wolfcrypt/src/cryptocb.c +++ b/wolfcrypt/src/cryptocb.c @@ -199,7 +199,7 @@ WOLFSSL_API void wc_CryptoCb_InfoString(wc_CryptoInfo* info) } #ifdef WOLF_CRYPTO_CB_CMD else if (info->algo_type == WC_ALGO_TYPE_NONE) { - printf("Crypto CB: CMD %s (%d)\n", GetAlgoTypeStr(info->algo_type), + printf("Crypto CB: %s %s (%d)\n", GetAlgoTypeStr(info->algo_type), GetCryptoCbCmdTypeStr(info->cmd.type), info->cmd.type); } #endif