r17423@catbus: nickm | 2007-12-28 01:54:42 -0500

Fix compilation with dmalloc


svn:r12998
This commit is contained in:
Nick Mathewson 2007-12-28 06:54:46 +00:00
parent d7f5a73173
commit c03ef9c395

View File

@ -239,7 +239,7 @@ _tor_malloc_roundup(size_t *sizep DMALLOC_PARAMS)
*sizep = malloc_usable_size(result);
return result;
#else
return _tor_malloc(*sizep);
return _tor_malloc(*sizep DMALLOC_FN_ARGS);
#endif
#endif
}