diff options
Diffstat (limited to 'src/scandir.c')
| -rw-r--r-- | src/scandir.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/scandir.c b/src/scandir.c index 622e4ddb8..197f63fd6 100644 --- a/src/scandir.c +++ b/src/scandir.c @@ -21,7 +21,6 @@ USA. */ #else # include "flstring.h" -# include <FL/fl_utf8.h> # if !HAVE_SCANDIR # include <stdlib.h> @@ -50,7 +49,7 @@ fl_scandir(const char *dir, struct dirent ***namelist, int (*select)(struct dirent *), int (*compar)(struct dirent **, struct dirent **)) { - DIR *dp = opendir (fl_utf2mbcs(dir)); + DIR *dp = opendir (dir); struct dirent **v = NULL; size_t vsize = 0, i; struct dirent *d; |
