eina: downgrad ERR to WRN when not finding a file.

This commit is contained in:
Cedric BAIL 2017-10-19 10:26:26 -07:00
parent f334f2a504
commit 38536c9ae9
1 changed files with 1 additions and 1 deletions

View File

@ -812,7 +812,7 @@ eina_file_open(const char *path, Eina_Bool shared)
close_handle:
CloseHandle(handle);
free_file:
ERR("Could not open file [%s].", filename);
WRN("Could not open file [%s].", filename);
eina_stringshare_del(filename);
return NULL;