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

git pushed a commit to branch master
in repository enventor.

View the commit online.

commit 070b8c7765329107f4bdbe96f24001d327895310
Author: Thanatermesis <[email protected]>
AuthorDate: Mon Feb 23 16:04:52 2026 -0500

    fix: Correct log message for Evas init failure
    
    I have identified a typo in the enventor_init function where a log message incorrectly identifies the failed initialization as Eet when it was actually evas_init that failed.
---
 src/lib/enventor_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/enventor_main.c b/src/lib/enventor_main.c
index f067f99..c7e246e 100644
--- a/src/lib/enventor_main.c
+++ b/src/lib/enventor_main.c
@@ -47,7 +47,7 @@ enventor_init(int argc, char **argv)
 
    if (!evas_init())
      {
-        EINA_LOG_ERR("Failed to initialize Eet");
+        EINA_LOG_ERR("Failed to initialize Evas");
         return _enventor_init_count--;
      }
 

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

Reply via email to