Fix build warning related to window home

This commit is contained in:
Jihoon Kim 2015-03-28 23:59:09 +09:00
parent 856bf8c0df
commit e52c85920a
2 changed files with 4 additions and 0 deletions

View File

@ -518,7 +518,9 @@ test_fileselector(void *data EINA_UNUSED,
{
Evas_Object *win, *fs, *box, *vbox, *sep;
char * home_env;
#ifdef _WIN32
char win_home_env[PATH_MAX];
#endif
/* Set the locale according to the system pref.
* If you don't do so the file selector will order the files list in

View File

@ -92,7 +92,9 @@ _fill_list(Evas_Object *obj, Elm_Genlist_Item_Class *itc)
Eina_List *l;
char *real;
char *home_env = NULL;
#ifdef _WIN32
char win_home_env[PATH_MAX];
#endif
unsigned int x = 0;
if (!dirs)