Fix prototypes.
authorDr. Stephen Henson <steve@openssl.org>
Sun, 2 Nov 2008 16:13:19 +0000 (16:13 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Sun, 2 Nov 2008 16:13:19 +0000 (16:13 +0000)
crypto/mem.c

index e868d645be13538a8893ca8365badd968c5048fe..97d47df489ad7f0f22b450e8e0598c498a4e0e2e 100644 (file)
@@ -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;