aboutsummaryrefslogtreecommitdiffstats
path: root/epan/emem.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-08-16 01:01:17 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-08-16 01:01:17 +0000
commit158ada58b3c8d6e77e46564752fc6375636e5804 (patch)
tree76c4b580eb366a6a4b9e2b9b3298631e769ff67c /epan/emem.h
parent0de8a67599d520ec5126181f1da8ccfa9f4921ef (diff)
se_alloc not ep_alloc!
svn path=/trunk/; revision=15365
Diffstat (limited to 'epan/emem.h')
-rw-r--r--epan/emem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/emem.h b/epan/emem.h
index f7919cf1ed..00e584f38b 100644
--- a/epan/emem.h
+++ b/epan/emem.h
@@ -113,7 +113,7 @@ guint8* se_memdup(const guint8* src, size_t len);
gchar* se_strdup_printf(const gchar* fmt, ...);
/* allocates with a capture lifetime scope an array of type made of num elements */
-#define se_alloc_array(type,num) (type*)ep_alloc(sizeof(type)*(num))
+#define se_alloc_array(type,num) (type*)se_alloc(sizeof(type)*(num))
/* release all memory allocated */
void se_free_all(void);