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 c6b3242c6076d15da0668fdf9b9905735fe4d3cd
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Tue Dec 26 23:31:57 2023 +0000
fix extra ifdefs - dont need __USE_MISC
too many ifdef checks - too conservative. reduce the __USE_MISC check
@fix
---
src/lib/eina/eina_file_posix.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/eina/eina_file_posix.c b/src/lib/eina/eina_file_posix.c
index f612ad06e8..0989cc81e5 100644
--- a/src/lib/eina/eina_file_posix.c
+++ b/src/lib/eina/eina_file_posix.c
@@ -412,7 +412,7 @@ _eina_file_timestamp_compare(Eina_File *f, struct stat *st)
if (f->length != (unsigned long long) st->st_size) return EINA_FALSE;
if (f->inode != st->st_ino) return EINA_FALSE;
#ifdef _STAT_VER_LINUX
-# if (defined __USE_MISC && defined st_mtime)
+# ifdef st_mtime
if (f->mtime_nsec != (unsigned long int)st->st_mtim.tv_nsec)
return EINA_FALSE;
# else
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.