aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-09-02 19:50:01 +0000
committerGerald Combs <gerald@wireshark.org>2005-09-02 19:50:01 +0000
commit12c3bd75d31a9ce004633a58fcbb17668f2a69a9 (patch)
tree401b402dcf140c4af79f1cbaef8a5db77eea895f /epan
parentd9b789cc05318e6b8ed5e72fda27b8ab682fed81 (diff)
Fix a typo.
svn path=/trunk/; revision=15672
Diffstat (limited to 'epan')
-rw-r--r--epan/emem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/emem.c b/epan/emem.c
index 2c763f8343..e3a8afcac3 100644
--- a/epan/emem.c
+++ b/epan/emem.c
@@ -211,7 +211,7 @@ se_alloc(size_t size)
emem_chunk_t *npc;
npc=g_malloc(sizeof(emem_chunk_t));
- npc->next=se_packet_mem_used_list;
+ npc->next=se_packet_mem.used_list;
npc->amount_free=size;
npc->free_offset=0;
npc->buf=g_malloc(size);