aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem/wmem_allocator_block_fast.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/wmem/wmem_allocator_block_fast.c')
-rw-r--r--epan/wmem/wmem_allocator_block_fast.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/wmem/wmem_allocator_block_fast.c b/epan/wmem/wmem_allocator_block_fast.c
index 6e1de7f6d7..d5f705653d 100644
--- a/epan/wmem/wmem_allocator_block_fast.c
+++ b/epan/wmem/wmem_allocator_block_fast.c
@@ -242,9 +242,9 @@ wmem_block_fast_allocator_init(wmem_allocator_t *allocator)
block_allocator = wmem_new(NULL, wmem_block_fast_allocator_t);
- allocator->alloc = &wmem_block_fast_alloc;
- allocator->realloc = &wmem_block_fast_realloc;
- allocator->free = &wmem_block_fast_free;
+ allocator->walloc = &wmem_block_fast_alloc;
+ allocator->wrealloc = &wmem_block_fast_realloc;
+ allocator->wfree = &wmem_block_fast_free;
allocator->free_all = &wmem_block_fast_free_all;
allocator->gc = &wmem_block_fast_gc;