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 c75195b2fc0d2b38e827d12142a9aef899225134
Author: Vincent Torri <vto...@outlook.fr>
AuthorDate: Mon May 19 00:58:48 2025 +0200
eina_file: call _stat64 instead of stat64. Fix gcc 15 compilation error on Windows
---
src/lib/eina/eina_file_win32.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/eina/eina_file_win32.c b/src/lib/eina/eina_file_win32.c
index a25069fbd0..0d1abfd516 100644
--- a/src/lib/eina/eina_file_win32.c
+++ b/src/lib/eina/eina_file_win32.c
@@ -1184,7 +1184,7 @@ eina_file_statat(void *container EINA_UNUSED, Eina_File_Direct_Info *info, Eina_
EINA_SAFETY_ON_NULL_RETURN_VAL(info, -1);
EINA_SAFETY_ON_NULL_RETURN_VAL(st, -1);
- if (stat64(info->path, &buf))
+ if (_stat64(info->path, &buf))
{
info->type = EINA_FILE_UNKNOWN;
return -1;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.