From: Martin Mares Date: Sun, 29 Jun 2014 09:13:17 +0000 (+0200) Subject: Mempool: Added a comment X-Git-Tag: v6.1~9 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=99e16d332b17a5014376bdcd61b64215f3c8cda0;p=libucw.git Mempool: Added a comment --- diff --git a/ucw/mempool.h b/ucw/mempool.h index ee6db64d..0f043d60 100644 --- a/ucw/mempool.h +++ b/ucw/mempool.h @@ -69,7 +69,7 @@ struct mempool_state { * You should use this one as an opaque handle only, the insides are internal. **/ struct mempool { - struct ucw_allocator allocator; + struct ucw_allocator allocator; // This must be the first element struct mempool_state state; void *unused, *last_big; size_t chunk_size, threshold;