+ [Eina] API change. eina_module_list_flush() -> eina_module_list_free()
authorturran <turran@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 8 Jan 2010 12:22:23 +0000 (12:22 +0000)
committerturran <turran@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 8 Jan 2010 12:22:23 +0000 (12:22 +0000)
  as we are on the modules context not the array.
  All the referenced projects are changed too. Remember that the list_free()
  already calls the unload() on each module so no need to call list_unload()

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/ethumb@44978 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/Ethumb.c

index a802982..995f7d1 100644 (file)
@@ -146,7 +146,7 @@ _ethumb_plugins_unload(void)
    eina_hash_free(_plugins_ext);
    _plugins_ext = NULL;
    eina_module_list_unload(_plugins);
-   eina_module_list_flush(_plugins);
+   eina_module_list_free(_plugins);
    eina_array_free(_plugins);
    _plugins = NULL;
 }