aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-12-18 23:25:11 +0000
committerEvan Huus <eapache@gmail.com>2012-12-18 23:25:11 +0000
commit8b69e3ee22b83c24c81ccef64c1e73a503ce0bc0 (patch)
treecb5251a1afad227912b3fdd7c05b0b81049f92b6 /epan/epan.c
parent0461a705c0a6e4fb35b8dac32abd81ac98c32879 (diff)
Use 'new' instead of 'create' a consistent manner.
svn path=/trunk/; revision=46601
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 12ca7b5988..86a65443f7 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -162,7 +162,7 @@ epan_dissect_init(epan_dissect_t *edt, const gboolean create_proto_tree, const g
{
g_assert(edt);
- edt->pi.pool = wmem_create_glib_allocator();
+ edt->pi.pool = wmem_glib_allocator_new();
if (create_proto_tree) {
edt->tree = proto_tree_create_root(&edt->pi);