se_alloc not ep_alloc!

svn path=/trunk/; revision=15365
This commit is contained in:
Luis Ontanon 2005-08-16 01:01:17 +00:00
parent 0de8a67599
commit 158ada58b3
1 changed files with 1 additions and 1 deletions

View File

@ -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);