summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/ex_data.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/ex_data.c b/crypto/ex_data.c
index a135858c69..5b2e345c27 100644
--- a/crypto/ex_data.c
+++ b/crypto/ex_data.c
@@ -279,9 +279,8 @@ static int ex_data_check(void)
#define EX_DATA_CHECK(iffail) if(!ex_data && !ex_data_check()) {iffail}
/* This "inner" callback is used by the callback function that follows it */
-static void def_cleanup_util_cb(void *v)
+static void def_cleanup_util_cb(CRYPTO_EX_DATA_FUNCS *funcs)
{
- CRYPTO_EX_DATA_FUNCS *funcs = (CRYPTO_EX_DATA_FUNCS *)v;
OPENSSL_free(funcs);
}