From bc4d6515fc9819a6dd9729797e6e1006ce5dd5ce Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Feb 2008 01:52:24 +0000 Subject: r14111@tombo: nickm | 2008-02-10 20:52:19 -0500 "0 bytes in 1 empty chunks" is hardly likely. svn:r13463 --- src/common/mempool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/common/mempool.c b/src/common/mempool.c index 7e2369fc43..081009b9d2 100644 --- a/src/common/mempool.c +++ b/src/common/mempool.c @@ -608,7 +608,7 @@ mp_pool_log_status(mp_pool_t *pool, int severity) bytes_allocated += chunk->mem_size; } log_fn(severity, LD_MM, U64_FORMAT" bytes in %d empty chunks", - U64_PRINTF_ARG(bytes_used), pool->n_empty_chunks); + U64_PRINTF_ARG(bytes_allocated), pool->n_empty_chunks); for (chunk = pool->used_chunks; chunk; chunk = chunk->next) { ++n_used; bu += chunk->n_allocated * pool->item_alloc_size; -- cgit v1.2.3-54-g00ecf