mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 11:50:00 -04:00
isc_mem_allocate debug macro had too many arguments.
This commit is contained in:
parent
f8b167ffb9
commit
20fc568036
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ typedef void (*isc_memfree_t)(void *, void *);
|
|||
#ifdef ISC_MEM_DEBUG
|
||||
#define isc_mem_get(c, s) __isc_mem_getdebug(c, s, __FILE__, __LINE__)
|
||||
#define isc_mem_put(c, p, s) __isc_mem_putdebug(c, p, s, __FILE__, __LINE__)
|
||||
#define isc_mem_allocate(c, p, s) __isc_mem_allocatedebug(c, s, \
|
||||
#define isc_mem_allocate(c, s) __isc_mem_allocatedebug(c, s, \
|
||||
__FILE__, __LINE__)
|
||||
#define isc_mem_free(c, p) __isc_mem_freedebug(c, p, __FILE__, __LINE__)
|
||||
#define isc_mem_strdup(c, p) __isc_mem_strdupdebug(c, p, \
|
||||
|
|
|
|||
Loading…
Reference in a new issue