This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efl.
View the commit online.
commit 38b6ecb136651518eb273eb64e6bbbeec8adee9f
Author: Vincent Torri <[email protected]>
AuthorDate: Mon Oct 13 08:09:00 2025 +0200
efreetd: remove warning
The st argument is used for checking if the directory is a
symbolic link, which is not supported on Windows
---
src/bin/efreet/efreetd_cache.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/bin/efreet/efreetd_cache.c b/src/bin/efreet/efreetd_cache.c
index d7a7f2539f..f5201183bd 100644
--- a/src/bin/efreet/efreetd_cache.c
+++ b/src/bin/efreet/efreetd_cache.c
@@ -513,6 +513,10 @@ icon_changes_monitor_add(const struct stat *st, const char *path)
}
}
free(realp);
+
+#ifdef _WIN32
+ (void)st;
+#endif
}
static void
@@ -541,6 +545,10 @@ desktop_changes_monitor_add(const struct stat *st, const char *path)
}
}
free(realp);
+
+#ifdef _WIN32
+ (void)st;
+#endif
}
static int
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.