From 64084bcba20a7aef0a53c0bd516c9f44e8bc676a Mon Sep 17 00:00:00 2001 From: John Safranek Date: Thu, 13 Aug 2020 13:18:29 -0700 Subject: [PATCH] Add a void to the empty parameter list for the function wolfSSL_SESSION_new(). --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index bb01685b6..d51985a73 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -19628,7 +19628,7 @@ int wolfSSL_session_reused(WOLFSSL* ssl) #if defined(OPENSSL_EXTRA) || defined(HAVE_EXT_CACHE) /* return a new malloc'd session with default settings on success */ -WOLFSSL_SESSION* wolfSSL_SESSION_new() +WOLFSSL_SESSION* wolfSSL_SESSION_new(void) { WOLFSSL_SESSION* ret = NULL;