From 30a9f480242e350dfa16f5bcee2f913128e168ad Mon Sep 17 00:00:00 2001 From: Patrick Caulfield Date: Thu, 27 Sep 2001 10:01:17 +0000 Subject: [PATCH] Fix prototype for malloc_aux --- lib/mm/dbg_malloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mm/dbg_malloc.h b/lib/mm/dbg_malloc.h index 94914cf87..68de7168e 100644 --- a/lib/mm/dbg_malloc.h +++ b/lib/mm/dbg_malloc.h @@ -22,7 +22,7 @@ #define _LVM_DBG_MALLOC_H #ifdef DEBUG_MEM -void *malloc_aux(unsigned int s, const char *file, int line); +void *malloc_aux(size_t s, const char *file, int line); void free_aux(void *p); void *realloc_aux(void *p, unsigned int s, const char *file, int line); int dump_memory(void);