This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository enlightenment-module-everything-places.

View the commit online.

commit 4eda5a93d4819e369c070c6882cf1c576afd2ac6
Author: Mike Pento <[email protected]>
AuthorDate: Fri Feb 13 20:23:59 2026 -0500

    everything-places: Fix __UNUSED__ attrib and remove e_module_delayed_set
    
    Changed __UNUSED__ attribute in _check_mount to __attribute__((unused)) and removed e_module_delayed_set call in e_modapi_init since delays in module loading are no longer needed. (See commit b4cfada8e84d626a07ee5c201246974268c6702e) This fixes compile failures for missing function declarations and attributes.
    @fix
---
 src/e_mod_main.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/e_mod_main.c b/src/e_mod_main.c
index 0c7a645..6a85244 100644
--- a/src/e_mod_main.c
+++ b/src/e_mod_main.c
@@ -181,7 +181,7 @@ _fetch(Evry_Plugin *plugin, const char *input)
 }
 
 static int
-_check_mount(Evry_Action *act __UNUSED__, const Evry_Item *it)
+_check_mount(Evry_Action *act __attribute__((unused)), const Evry_Item *it)
 {
    GET_FILE(file, it);
    if (file->mime == _mime_mount)
@@ -335,8 +335,6 @@ e_modapi_init(E_Module *m)
 
    EVRY_MODULE_NEW(evry_module, evry, _plugins_init, _plugins_shutdown);
 
-   e_module_delayed_set(m, 1);
-
    return m;
 }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to