summaryrefslogtreecommitdiffstats
path: root/crypto/crypto.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-08-01 08:41:13 +0000
committerRichard Levitte <levitte@openssl.org>2000-08-01 08:41:13 +0000
commite5acb2bd2e80a0d6923b2b0602e4821597284a8b (patch)
tree80bda39db86012cdb15ecd4a22e8392ad05eecb6 /crypto/crypto.h
parent173e243aaef55ac811365c1b5853ab0571b2c3dd (diff)
Remove casts that are no longer needed.
Diffstat (limited to 'crypto/crypto.h')
-rw-r--r--crypto/crypto.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/crypto/crypto.h b/crypto/crypto.h
index bda2f56df4..6f83650df8 100644
--- a/crypto/crypto.h
+++ b/crypto/crypto.h
@@ -243,11 +243,11 @@ DECLARE_STACK_OF(CRYPTO_EX_DATA_FUNCS)
* unless CRYPTO_MDEBUG is defined) */
#define CRYPTO_malloc_debug_init() do {\
CRYPTO_set_mem_debug_functions(\
- (void (*)())CRYPTO_dbg_malloc,\
- (void (*)())CRYPTO_dbg_realloc,\
- (void (*)())CRYPTO_dbg_free,\
- (void (*)())CRYPTO_dbg_set_options,\
- (long (*)())CRYPTO_dbg_get_options);\
+ CRYPTO_dbg_malloc,\
+ CRYPTO_dbg_realloc,\
+ CRYPTO_dbg_free,\
+ CRYPTO_dbg_set_options,\
+ CRYPTO_dbg_get_options);\
} while(0)
int CRYPTO_mem_ctrl(int mode);