This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch devs/dimmus/meson
in repository efl.
View the commit online.
commit 7934ad38285a2b7ff1febb8c2169057af13ffc3d
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon Apr 28 18:27:37 2025 +0100
ecore-file: silence gcc 15 warnings
no bug here - just warnings for perfectly ok code and people using -Werror ...
fixes #85
---
src/lib/ecore_file/ecore_file_monitor_inotify.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/lib/ecore_file/ecore_file_monitor_inotify.c b/src/lib/ecore_file/ecore_file_monitor_inotify.c
index 988893de4f..b187fbc2c1 100644
--- a/src/lib/ecore_file/ecore_file_monitor_inotify.c
+++ b/src/lib/ecore_file/ecore_file_monitor_inotify.c
@@ -51,7 +51,7 @@ static Eina_Bool reseting;
static Eina_Hash *monitor_hash;
static void
-_ecore_file_monitor_inotify_reset()
+_ecore_file_monitor_inotify_reset(void *data EINA_UNUSED)
{
Eina_Iterator *it;
Ecore_File_Monitor *em;
@@ -132,7 +132,7 @@ ecore_file_monitor_backend_add(const char *path,
if (_inotify_fd_pid == -1) return NULL;
if (_inotify_fd_pid != getpid())
- _ecore_file_monitor_inotify_reset();
+ _ecore_file_monitor_inotify_reset(NULL);
em = (Ecore_File_Monitor *)calloc(1, sizeof(Ecore_File_Monitor_Inotify));
if (!em) return NULL;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.