From 91df89c40cf98746be0ccf69656f5f27677c5153 Mon Sep 17 00:00:00 2001 From: Sebastian Dransfeld Date: Fri, 13 Aug 2010 22:48:59 +0000 Subject: [PATCH] Fix typo SVN revision: 51103 --- legacy/eet/src/lib/Eet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/eet/src/lib/Eet.h b/legacy/eet/src/lib/Eet.h index 897ebc0874..337cbc7682 100644 --- a/legacy/eet/src/lib/Eet.h +++ b/legacy/eet/src/lib/Eet.h @@ -1779,7 +1779,7 @@ struct _Eet_Data_Descriptor_Class const char *(*type_get)(const void *data, Eina_Bool *unknow); /**< convert any kind of data type to a name that define an Eet_Data_Element. */ Eina_Bool (*type_set)(const char *type, void *data, Eina_Bool unknow); /**< set the type at a particular adress */ void * (*array_alloc)(size_t size); /**< how to allocate memory for array (usually malloc()) */ - void (*array_free)(void *mem); /**< how to free memory for array (usually malloc()) */ + void (*array_free)(void *mem); /**< how to free memory for array (usually free()) */ } func; };