file compiles, but does not work.

SVN revision: 16628
This commit is contained in:
sebastid 2005-09-06 23:30:44 +00:00 committed by sebastid
parent 4560214bed
commit 549becd9d9
1 changed files with 2 additions and 1 deletions

View File

@ -257,10 +257,11 @@ _ecore_file_monitor_fam_handler(void *data, Ecore_Fd_Handler *fdh)
static Ecore_File *
_ecore_file_monitor_fam_file_find(Ecore_File_Monitor *em, char *name)
{
Ecore_List2 *l;
for (l = em->files; l; l = l->next)
{
Ecore_File *f;
f = l->data;
f = (Ecore_File *)l;
if (!strcmp(f->name, name))
return f;
}