summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWonki Kim <wonki_.kim@samsung.com>2020-03-16 07:24:24 +0000
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2020-03-17 10:29:45 +0100
commit770e3cae4ae9993c208e5ec6181af84ac20c6931 (patch)
tree41f76196b8eec271c757d5a71dbc1873d08028bf
parentc4e1de9854dc99d8a1ce086c45a9e9c89f5760da (diff)
downloadefl-770e3cae4ae9993c208e5ec6181af84ac20c6931.tar.gz
eina_file: fix a typo error
'sefl' is definitely a typo this patch fixes it Reviewed-by: Shinwoo Kim <cinoo.kim@samsung.com> Differential Revision: https://phab.enlightenment.org/D11510
-rw-r--r--src/lib/eina/eina_file.c2
1 files changed, 1 insertions, 1 deletions
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)
{