Fix warning. evas_hash_free never returned anything.

SVN revision: 38019
This commit is contained in:
Cedric BAIL 2008-12-08 12:49:36 +00:00
parent c7b0e0a6b3
commit 94aaa28ef9
1 changed files with 2 additions and 2 deletions

View File

@ -115,8 +115,8 @@ extern "C" {
}
static inline void evas_hash_free(Eina_Hash *hash)
{
if (!hash) return NULL;
return eina_hash_free(hash);
if (!hash) return ;
eina_hash_free(hash);
}
static inline void evas_hash_foreach(const Eina_Hash *hash, Eina_Hash_Foreach cb, const void *fdata)