From b27b4768ae1089b1fc5a12d1b35a74658eb8a95d Mon Sep 17 00:00:00 2001 From: Hideki Miyazaki Date: Sat, 31 Jul 2021 18:26:07 +0900 Subject: [PATCH] fix jenkins failure --- wolfcrypt/src/evp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/evp.c b/wolfcrypt/src/evp.c index 0b350dc7a..05cf734f0 100644 --- a/wolfcrypt/src/evp.c +++ b/wolfcrypt/src/evp.c @@ -3970,7 +3970,7 @@ int wolfSSL_EVP_MD_type(const WOLFSSL_EVP_MD *md) */ static void md_do_all_func(const WOLFSSL_OBJ_NAME* nm, void* arg) { - struct do_all_md *md = arg; + struct do_all_md *md = (struct do_all_md*)arg; const char* alias = NULL; const struct s_ent *ent;