bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=770e3cae4ae9993c208e5ec6181af84ac20c6931
commit 770e3cae4ae9993c208e5ec6181af84ac20c6931 Author: Wonki Kim <[email protected]> Date: Mon Mar 16 07:24:24 2020 +0000 eina_file: fix a typo error 'sefl' is definitely a typo this patch fixes it Reviewed-by: Shinwoo Kim <[email protected]> Differential Revision: https://phab.enlightenment.org/D11510 --- src/lib/eina/eina_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eina/eina_file.c b/src/lib/eina/eina_file.c index bc656233ac..0d9486568f 100644 --- a/src/lib/eina/eina_file.c +++ b/src/lib/eina/eina_file.c @@ -1261,7 +1261,7 @@ eina_file_close_from(int fd, int *except_fd) #ifdef HAVE_DIRENT_H DIR *dir; - dir = opendir("/proc/sefl/fd"); + dir = opendir("/proc/self/fd"); if (!dir) dir = opendir("/dev/fd"); if (dir) { --
