warnings--
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 26 Aug 2009 15:43:45 +0000 (15:43 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 26 Aug 2009 15:43:45 +0000 (15:43 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@42018 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore/ecore_getopt.c
src/lib/ecore/ecore_main.c
src/lib/ecore/ecore_path.c

index a9a6e3a..caf0951 100644 (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;
 
index 33fcb8a..1bb041d 100644 (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);
index bb1f195..8fdc373 100644 (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