diff options
Diffstat (limited to 'src/common/mempool.c')
-rw-r--r-- | src/common/mempool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mempool.c b/src/common/mempool.c index b3c3752531..06f23ad94f 100644 --- a/src/common/mempool.c +++ b/src/common/mempool.c @@ -329,7 +329,7 @@ mp_pool_release(void *item) } /** Allocate a new memory pool to hold items of size <b>item_size</b>. We'll - * try to fit about <b>chunk_capacity</b> items in each chunk. */ + * try to fit about <b>chunk_capacity</b> bytes in each chunk. */ mp_pool_t * mp_pool_new(size_t item_size, size_t chunk_capacity) { |