diff options
author | Stu Grossman <grossman@cygnus> | 1991-11-19 08:02:35 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1991-11-19 08:02:35 +0000 |
commit | 61af01bc7065b6aa740b0a9cccdcf43ed9c28803 (patch) | |
tree | 0f2984f29501b18682a131ac7d91dd673c371c33 /readline/readline.c | |
parent | 494ea0b286eab61e649d71671a3315c34028f683 (diff) | |
download | gdb-61af01bc7065b6aa740b0a9cccdcf43ed9c28803.zip gdb-61af01bc7065b6aa740b0a9cccdcf43ed9c28803.tar.gz gdb-61af01bc7065b6aa740b0a9cccdcf43ed9c28803.tar.bz2 |
* readline.c (filename_completion_function): use struct dirent
instead of struct direct.
Diffstat (limited to 'readline/readline.c')
-rw-r--r-- | readline/readline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/readline/readline.c b/readline/readline.c index 023407d..f4ae40e 100644 --- a/readline/readline.c +++ b/readline/readline.c @@ -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) |