summaryrefslogtreecommitdiffstats
path: root/crypto/ex_data.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2001-09-07 11:43:30 +0000
committerBen Laurie <ben@openssl.org>2001-09-07 11:43:30 +0000
commit546ec5a9b38f8520a99f7b4846c0ba03ad39e558 (patch)
treebf6839b18f97f3de2715061e3216a91d8e039ef1 /crypto/ex_data.c
parente3fefbfd56685b7c62ebdb061e6643dfe16c31d8 (diff)
Redo type-safety fix.
Diffstat (limited to 'crypto/ex_data.c')
-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);
}