diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_file/ecore_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_file/ecore_file.c b/src/lib/ecore_file/ecore_file.c index db0a1e65c4..7dba323895 100644 --- a/src/lib/ecore_file/ecore_file.c +++ b/src/lib/ecore_file/ecore_file.c | |||
@@ -319,7 +319,7 @@ ecore_file_mksubdirs(const char *base, const char **subdirs) | |||
319 | if (errno == ENOENT) | 319 | if (errno == ENOENT) |
320 | { | 320 | { |
321 | #ifndef HAVE_ATFILE_SOURCE | 321 | #ifndef HAVE_ATFILE_SOURCE |
322 | if (mkdir(buf, default_mode) == 0) | 322 | if (ecore_file_mkdir(buf)) |
323 | #else | 323 | #else |
324 | if (mkdirat(fd, *subdirs, default_mode) == 0) | 324 | if (mkdirat(fd, *subdirs, default_mode) == 0) |
325 | #endif | 325 | #endif |