diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_file/ecore_file_path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_file/ecore_file_path.c b/src/lib/ecore_file/ecore_file_path.c index a368cf35fb..71fdb680ec 100644 --- a/src/lib/ecore_file/ecore_file_path.c +++ b/src/lib/ecore_file/ecore_file_path.c | |||
@@ -97,7 +97,7 @@ ecore_file_path_dir_exists(const char *in_dir) | |||
97 | if (!__ecore_file_path_bin) return EINA_FALSE; | 97 | if (!__ecore_file_path_bin) return EINA_FALSE; |
98 | EINA_LIST_FOREACH(__ecore_file_path_bin, l, dir) | 98 | EINA_LIST_FOREACH(__ecore_file_path_bin, l, dir) |
99 | { | 99 | { |
100 | if (strcmp(dir, in_dir)) | 100 | if (!strcmp(dir, in_dir)) |
101 | return EINA_TRUE; | 101 | return EINA_TRUE; |
102 | } | 102 | } |
103 | 103 | ||