summaryrefslogtreecommitdiff
path: root/src/remove.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-11-23 08:10:49 +0000
committerJim Meyering <jim@meyering.net>2001-11-23 08:10:49 +0000
commit4d13e6fa55b4c96ab22ab646c52a62797cb33858 (patch)
treea0ee9967bfec489bc05774006e0e41261a1b7b08 /src/remove.c
parente38b3095cb2aa107120b70add989405e0b105d2b (diff)
downloadcoreutils-4d13e6fa55b4c96ab22ab646c52a62797cb33858.tar.xz
Use opaque type, Hash_table, not `struct hash_table'.
Diffstat (limited to 'src/remove.c')
-rw-r--r--src/remove.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/remove.c b/src/remove.c
index c36928fdb..ce8efec61 100644
--- a/src/remove.c
+++ b/src/remove.c
@@ -120,7 +120,7 @@ static struct obstack len_stack;
This construct is used to detect directory cycles so that RM can warn
about them rather than iterating endlessly. */
#ifdef ENABLE_CYCLE_CHECK
-static struct hash_table *active_dir_map;
+static Hash_table *active_dir_map;
#endif
static inline unsigned int
@@ -425,7 +425,7 @@ remove_cwd_entries (const struct rm_options *x)
/* NULL or a malloc'd and initialized hash table of entries in the
current directory that have been processed but not removed --
due either to an error or to an interactive `no' response. */
- struct hash_table *ht = NULL;
+ Hash_table *ht = NULL;
/* FIXME: describe */
static struct obstack entry_name_pool;