summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/pool_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pool_alloc.c b/lib/pool_alloc.c
index 7d95f197..e1ce50b3 100644
--- a/lib/pool_alloc.c
+++ b/lib/pool_alloc.c
@@ -52,7 +52,7 @@ pool_create(size_t size, size_t quantum, void (*bomb)(const char *), int flags)
pool->size = size /* round extent size to min alignment reqs */
? (size + MINALIGN - 1) & ~(MINALIGN - 1)
: POOL_DEF_EXTENT;
- if (pool->flags & POOL_INTERN) {
+ if (flags & POOL_INTERN) {
pool->size -= sizeof (struct pool_extent);
flags |= POOL_APPEND;
}