diff options
author | Ben Laurie <ben@openssl.org> | 2001-09-07 13:43:30 +0200 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 2001-09-07 13:43:30 +0200 |
commit | 546ec5a9b38f8520a99f7b4846c0ba03ad39e558 (patch) | |
tree | bf6839b18f97f3de2715061e3216a91d8e039ef1 /crypto/ex_data.c | |
parent | ispell (diff) | |
download | openssl-546ec5a9b38f8520a99f7b4846c0ba03ad39e558.tar.xz openssl-546ec5a9b38f8520a99f7b4846c0ba03ad39e558.zip |
Redo type-safety fix.
Diffstat (limited to '')
-rw-r--r-- | crypto/ex_data.c | 3 |
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); } |