diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2019-05-22 07:59:05 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@samsung.com> | 2019-05-22 07:59:05 -0400 |
commit | 8db978aa4cf216632581c629053fb90ed16de33d (patch) | |
tree | 58dc41e21b614992a6fd9896291b3717296aaba8 /src/lib/ecore_evas | |
parent | af70c4ff6d51a64bca4f11d7dd61bb29c96ef0b7 (diff) |
include evil_private.h in last files, and disable symbolic links on Windows in a couple of files
Test Plan: compilation
Reviewers: zmike, raster, cedric
Reviewed By: zmike
Subscribers: #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D8933
Diffstat (limited to 'src/lib/ecore_evas')
-rw-r--r-- | src/lib/ecore_evas/ecore_evas_module.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/ecore_evas/ecore_evas_module.c b/src/lib/ecore_evas/ecore_evas_module.c index a6ce6bec51..2b5394b06f 100644 --- a/src/lib/ecore_evas/ecore_evas_module.c +++ b/src/lib/ecore_evas/ecore_evas_module.c | |||
@@ -224,7 +224,8 @@ _ecore_evas_available_engines_get(void) | |||
224 | const char *name; | 224 | const char *name; |
225 | 225 | ||
226 | #ifdef _WIN32 | 226 | #ifdef _WIN32 |
227 | EVIL_PATH_SEP_WIN32_TO_UNIX(info->path); | 227 | name = strrchr(info->path, '\\'); |
228 | if (name) name++; | ||
228 | #endif | 229 | #endif |
229 | name = strrchr(info->path, '/'); | 230 | name = strrchr(info->path, '/'); |
230 | if (name) name++; | 231 | if (name) name++; |