eina: Fix warnings about unused variables on Windows

NB: Patch from vtorri
This commit is contained in:
Christopher Michael 2020-02-23 07:38:05 -05:00
parent 1fd5acc2fc
commit 104e98d2ee
1 changed files with 2 additions and 0 deletions

View File

@ -1152,6 +1152,8 @@ eina_file_close_on_exec(int fd, Eina_Bool on)
{
#ifdef _WIN32
return EINA_TRUE;
(void)fd;
(void)on;
#elif HAVE_FCNTL
int flags;