warnings--

SVN revision: 42018
This commit is contained in:
Vincent Torri 2009-08-26 15:43:45 +00:00
parent 77a9dab5eb
commit 654330e183
3 changed files with 3 additions and 3 deletions

View File

@ -1677,7 +1677,7 @@ ecore_getopt_callback_geometry_parse(const Ecore_Getopt *parser __UNUSED__, cons
* @c callback_data value is ignored, you can safely use @c NULL.
*/
unsigned char
ecore_getopt_callback_size_parse(const Ecore_Getopt *parser, const Ecore_Getopt_Desc *desc, const char *str, void *data, Ecore_Getopt_Value *storage)
ecore_getopt_callback_size_parse(const Ecore_Getopt *parser __UNUSED__, const Ecore_Getopt_Desc *desc __UNUSED__, const char *str, void *data __UNUSED__, Ecore_Getopt_Value *storage)
{
Eina_Rectangle *v = (Eina_Rectangle *)storage->ptrp;

View File

@ -753,7 +753,7 @@ _ecore_main_win32_select(int nfds, fd_set *readfds, fd_set *writefds,
else
timeout = (DWORD)(tv->tv_sec * 1000.0 + tv->tv_usec / 1000.0);
result = MsgWaitForMultipleObjects(events_nbr, events, FALSE,
result = MsgWaitForMultipleObjects(events_nbr, (const HANDLE *)events, FALSE,
timeout, QS_ALLINPUT);
FD_ZERO(readfds);

View File

@ -89,7 +89,7 @@ ecore_path_group_remove(Ecore_Path_Group *group, const char *path)
/*
* Find the path in the list of available paths
*/
found = eina_list_search_unsorted(group->paths, strcmp, path);
found = eina_list_search_unsorted(group->paths, EINA_COMPARE_CB(strcmp), path);
/*
* If the path is found, remove and free it