Commit c03ef9c3 authored by Nick Mathewson's avatar Nick Mathewson 🥔
Browse files

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

 Fix compilation with dmalloc


svn:r12998
parent d7f5a731
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
}