From d90a89898c1c5fd9c351154424542d73fa3c7b7b Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Tue, 10 May 2022 15:14:21 -0500 Subject: [PATCH] wolfssl/test.h:OCSPRespFreeCb(): fix non-void return of and from void function. --- wolfssl/test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/test.h b/wolfssl/test.h index ad70715a6..529b33419 100644 --- a/wolfssl/test.h +++ b/wolfssl/test.h @@ -2521,7 +2521,7 @@ static WC_INLINE int OCSPIOCb(void* ioCtx, const char* url, int urlSz, static WC_INLINE void OCSPRespFreeCb(void* ioCtx, unsigned char* response) { - return EmbedOcspRespFree(ioCtx, response); + EmbedOcspRespFree(ioCtx, response); } #endif