diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2015-07-03 10:11:01 +0200 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2015-07-03 16:23:06 +0100 |
commit | 315e1f5a2bc2dd9e1a721681a08ab56d0a0c7e24 (patch) | |
tree | e982cc93b194cb8c909c2fb374d64121c2b6b019 /src | |
parent | 308dbff1410af9d3d3f9e22e2acf3ab7b3f4b14a (diff) |
Ecore_File: use ecore_file_mkdir()
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 |