From 1099d4dda0019a18b1d1ab1d49756d92ca34b5c1 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Wed, 2 Oct 2019 12:58:59 -0500 Subject: [PATCH] Use S_ISLNK macro only if it is defined Test Plan: compilation Reviewers: stephenmhouston Reviewed By: stephenmhouston Differential Revision: https://phab.enlightenment.org/D9810 --- src/bin/ephoto_file.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/ephoto_file.c b/src/bin/ephoto_file.c index 2b7d027..7155295 100644 --- a/src/bin/ephoto_file.c +++ b/src/bin/ephoto_file.c @@ -968,11 +968,13 @@ _delete_thread_cb(void *data, Ecore_Thread *et EINA_UNUSED) if (lstat(file, &s) == 0) #endif { +#ifdef S_ISLNK if (S_ISLNK(s.st_mode)) { ret = ecore_file_unlink(file); } else +#endif { snprintf(fp, PATH_MAX, "%s", file); snprintf(dest, PATH_MAX, "%s/%s", ephoto->trash_path, basename(fp));