summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-12-28 06:54:46 +0000
committerNick Mathewson <nickm@torproject.org>2007-12-28 06:54:46 +0000
commitc03ef9c395cc6c3aab504a8f54db459015ca8a34 (patch)
tree398d0b80cc3b1545bbd3ed5c7fbe4ae5bb990912 /src
parentd7f5a73173a6393c7a1f442b4ab46ed93de31643 (diff)
downloadtor-c03ef9c395cc6c3aab504a8f54db459015ca8a34.tar.gz
tor-c03ef9c395cc6c3aab504a8f54db459015ca8a34.zip
r17423@catbus: nickm | 2007-12-28 01:54:42 -0500
Fix compilation with dmalloc svn:r12998
Diffstat (limited to 'src')
-rw-r--r--src/common/util.c2
1 files changed, 1 insertions, 1 deletions
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
}