SVN revision: 13847
This commit is contained in:
sebastid 2005-03-22 11:30:33 +00:00 committed by sebastid
parent 97a9424b94
commit f008bceb59
1 changed files with 4 additions and 2 deletions

View File

@ -211,9 +211,11 @@ ecore_file_ls(const char *dir)
}
}
/* nowhwre to go? just append it */
f = strdup(dp->d_name);
if (!l)
list = evas_list_append(list, f);
{
f = strdup(dp->d_name);
list = evas_list_append(list, f);
}
}
}
closedir(dirp);