Fix compiler warnings.

SVN revision: 19798
This commit is contained in:
sebastid 2006-01-14 15:58:01 +00:00 committed by sebastid
parent 67c29e58a3
commit debdc91f2c
1 changed files with 1 additions and 2 deletions

View File

@ -51,7 +51,6 @@ evas_module_paths_init(void)
char *prefix;
char *path;
int i;
Evas_List *paths = NULL;
/* 1. ~/.evas/modules/ */
@ -137,7 +136,7 @@ evas_module_init(void)
if (!(dir = opendir(mp->path))) break;
// printf("[evas module] searching modules on %s\n", mp->path);
while (de = readdir(dir))
while ((de = readdir(dir)))
{
char *buf;