summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dransfeld <sd@tango.flipp.net>2010-08-13 22:48:59 +0000
committerSebastian Dransfeld <sd@tango.flipp.net>2010-08-13 22:48:59 +0000
commitc7ba506830179e5436ee39b2a261a9b868838dbe (patch)
tree1b2f7f96c8579e86a98661263ade938356c54ba2
parent9c00f76173a5e47219e41c3b12d2ecd60d857f20 (diff)
downloadeet-c7ba506830179e5436ee39b2a261a9b868838dbe.tar.gz
Fix typo
SVN revision: 51103
-rw-r--r--src/lib/Eet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Eet.h b/src/lib/Eet.h
index 897ebc0..337cbc7 100644
--- a/src/lib/Eet.h
+++ b/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;
};