From 82583b6c4cb946d8d381ae7578fddb6ded872150 Mon Sep 17 00:00:00 2001 From: Pavel Charvat Date: Mon, 10 Nov 2008 13:20:06 +0100 Subject: [PATCH] Doc: Fixed some typos in mempool's examples. --- ucw/doc/mempool.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ucw/doc/mempool.txt b/ucw/doc/mempool.txt index d3fc4c06..456cf1c8 100644 --- a/ucw/doc/mempool.txt +++ b/ucw/doc/mempool.txt @@ -49,7 +49,7 @@ not need to walk trough it and free each node, you just struct trie *trie_new(void) { struct mempool *pool = mn_new(4096); - struct trie *result = mp_alloc_zero(pool, sizeof *result); + struct trie *result = mp_alloc_zero(pool, sizeof(*result)); result->pool = pool; return result; } @@ -57,7 +57,7 @@ not need to walk trough it and free each node, you just void trie_insert_internal(struct trie_node *where, struct mempool *pool, const char *string) { if(*string) { if(!where->subs[*string]) - where->subs[*string] = mp_alloc_zero(pool, sizeof *where->subs[*string]); + where->subs[*string] = mp_alloc_zero(pool, sizeof(*where->subs[*string])); trie_insert_internal(where->subs[*string], pool, string + 1); } else { where->present = 1; @@ -89,7 +89,7 @@ mempool state. void load_file(struct mempool *pool, const char *file) { struct mempool_state state; mp_save(pool, &state); // Store the current state - struct file_data *data = mp_alloc_zero(pool, sizeof *data); + struct file_data *data = mp_alloc_zero(pool, sizeof(*data)); if(!( file_open(file, data, pool) && // Load the file header_load(data, pool) && -- 2.39.2