Browse Source

r17423@catbus: nickm | 2007-12-28 01:54:42 -0500
Fix compilation with dmalloc


svn:r12998

Nick Mathewson 16 years ago
parent
commit
c03ef9c395
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/util.c

+ 1 - 1
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
 }