From c03ef9c395cc6c3aab504a8f54db459015ca8a34 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 28 Dec 2007 06:54:46 +0000 Subject: r17423@catbus: nickm | 2007-12-28 01:54:42 -0500 Fix compilation with dmalloc svn:r12998 --- src/common/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/util.c b/src/common/util.c index d11b508b92..92fb7d63b0 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -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 } -- cgit v1.2.3-54-g00ecf