From 920e6ed91151b4e2b4a19853100bf9761c579dba Mon Sep 17 00:00:00 2001 From: Eric Blankenhorn Date: Fri, 6 Apr 2018 09:30:54 -0500 Subject: [PATCH] Fix warning in ssl.c --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index 6d2e85b6e..d01670578 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -13969,7 +13969,7 @@ int wolfSSL_EVP_MD_type(const WOLFSSL_EVP_MD *md) ctx->keyLen = 0; ctx->block_size = 16; } - + (void)ret; /* remove warning. If execution reaches this point, ret=0 */ return WOLFSSL_SUCCESS; }