wolfssl/test.h:OCSPRespFreeCb(): fix non-void return of and from void function.

This commit is contained in:
Daniel Pouzzner
2022-05-10 15:14:21 -05:00
parent 9fbb4a923f
commit d90a89898c

View File

@ -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