* readline.c (filename_completion_function): use struct dirent

instead	of struct direct.
This commit is contained in:
Stu Grossman
1991-11-19 08:02:35 +00:00
parent 494ea0b286
commit 61af01bc70
2 changed files with 6 additions and 1 deletions

View File

@@ -5137,7 +5137,7 @@ filename_completion_function (text, state)
static char *users_dirname = (char *)NULL;
static int filename_len;
struct direct *entry = (struct direct *)NULL;
struct dirent *entry = (struct dirent *)NULL;
/* If we don't have any state, then do some initialization. */
if (!state)