Remove casts that are no longer needed.
authorRichard Levitte <levitte@openssl.org>
Tue, 1 Aug 2000 08:41:13 +0000 (08:41 +0000)
committerRichard Levitte <levitte@openssl.org>
Tue, 1 Aug 2000 08:41:13 +0000 (08:41 +0000)
crypto/crypto.h

index bda2f56df40010bb23713442d81404f40280ac10..6f83650df84cf08efc7930b3116f09c0c5d841b7 100644 (file)
@@ -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);