Ecore_File: use ecore_file_mkdir()

This commit is contained in:
Vincent Torri 2015-07-03 10:11:01 +02:00 committed by Tom Hacohen
parent 308dbff141
commit 315e1f5a2b
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ ecore_file_mksubdirs(const char *base, const char **subdirs)
if (errno == ENOENT)
{
#ifndef HAVE_ATFILE_SOURCE
if (mkdir(buf, default_mode) == 0)
if (ecore_file_mkdir(buf))
#else
if (mkdirat(fd, *subdirs, default_mode) == 0)
#endif