Fix warnings.

SVN revision: 26974
This commit is contained in:
Kim Woelders 2006-11-05 16:34:30 +00:00
parent fe390d060e
commit 563035d3db
2 changed files with 6 additions and 1 deletions

View File

@ -144,6 +144,11 @@ ecore_file_download(const char *url, const char *dst,
{
return 0;
}
#ifndef HAVE_CURL
completion_cb = NULL;
progress_cb = NULL;
data = NULL;
#endif
}
EAPI int

View File

@ -150,7 +150,7 @@ ecore_file_monitor_inotify_del(Ecore_File_Monitor *em)
}
static int
_ecore_file_monitor_inotify_handler(void *data, Ecore_Fd_Handler *fdh)
_ecore_file_monitor_inotify_handler(void *data __UNUSED__, Ecore_Fd_Handler *fdh)
{
Ecore_File_Monitor *em;
char buffer[16384];