summaryrefslogtreecommitdiffstats
path: root/crypto/mem.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-11-02 16:13:19 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-11-02 16:13:19 +0000
commit2766515fcad8dfe9223a041b7ca42f00c7c55156 (patch)
tree0bb6b8a1d24d79876139d617ea689c812ceccbe3 /crypto/mem.c
parent87d52468aa600e02326e13f01331e1f3b8602ed0 (diff)
Fix prototypes.
Diffstat (limited to 'crypto/mem.c')
-rw-r--r--crypto/mem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/mem.c b/crypto/mem.c
index e868d645be..97d47df489 100644
--- a/crypto/mem.c
+++ b/crypto/mem.c
@@ -113,8 +113,8 @@ static long (*get_debug_options_func)(void) = CRYPTO_dbg_get_options;
#else
/* applications can use CRYPTO_malloc_debug_init() to select above case
* at run-time */
-static void (*malloc_debug_func)(void *,int,const char *,int,int) = NULL;
-static void (*realloc_debug_func)(void *,void *,int,const char *,int,int)
+static void (*malloc_debug_func)(void *,size_t,const char *,int,int) = NULL;
+static void (*realloc_debug_func)(void *,void *,size_t,const char *,int,int)
= NULL;
static void (*free_debug_func)(void *,int) = NULL;
static void (*set_debug_options_func)(long) = NULL;