aboutsummaryrefslogtreecommitdiff
path: root/src/common/mempool.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2011-01-12 18:38:52 -0500
committerRoger Dingledine <arma@torproject.org>2011-01-12 18:38:52 -0500
commit10d385bd71cf9e37e5388a742dd618716e22645a (patch)
tree83b152d1238c44a6bcbb50defc3a106599ade3c4 /src/common/mempool.c
parent9a6a8ea4665f89057229811fd5fb7354549aad6b (diff)
downloadtor-10d385bd71cf9e37e5388a742dd618716e22645a.tar
tor-10d385bd71cf9e37e5388a742dd618716e22645a.tar.gz
typos
Diffstat (limited to 'src/common/mempool.c')
-rw-r--r--src/common/mempool.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/mempool.c b/src/common/mempool.c
index 520e470c7..30d778804 100644
--- a/src/common/mempool.c
+++ b/src/common/mempool.c
@@ -137,8 +137,7 @@ struct mp_chunk_t {
int capacity; /**< Number of items that can be fit into this chunk. */
size_t mem_size; /**< Number of usable bytes in mem. */
char *next_mem; /**< Pointer into part of <b>mem</b> not yet carved up. */
- /** Storage for this chunk */
- char mem[FLEXIBLE_ARRAY_MEMBER];
+ char mem[FLEXIBLE_ARRAY_MEMBER]; /**< Storage for this chunk. */
};
/** Number of extra bytes needed beyond mem_size to allocate a chunk. */