Remove unused variable.

Return int, not pointer


SVN revision: 25519
This commit is contained in:
sebastid 2006-09-06 07:11:03 +00:00 committed by sebastid
parent 1b42f03040
commit 7dd79ae17b
1 changed files with 1 additions and 2 deletions

View File

@ -442,11 +442,10 @@ edje_file_collection_list_free(Evas_List *lst)
EAPI int
edje_file_group_exists(const char *file, const char *glob)
{
Evas_List *lst = NULL;
Edje_File *edf;
int error_ret = 0;
if ((!file) || (!*file)) return NULL;
if ((!file) || (!*file)) return 0;
edf = _edje_cache_file_coll_open(file, NULL, &error_ret, NULL);
if (edf != NULL)
{