1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Fix prototype for malloc_aux

This commit is contained in:
Patrick Caulfield 2001-09-27 10:01:17 +00:00
parent 7bf5c85a05
commit 30a9f48024

View File

@ -22,7 +22,7 @@
#define _LVM_DBG_MALLOC_H #define _LVM_DBG_MALLOC_H
#ifdef DEBUG_MEM #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 free_aux(void *p);
void *realloc_aux(void *p, unsigned int s, const char *file, int line); void *realloc_aux(void *p, unsigned int s, const char *file, int line);
int dump_memory(void); int dump_memory(void);