diff options
-rw-r--r-- | src/cp-hash.c | 2 | ||||
-rw-r--r-- | src/du.c | 2 | ||||
-rw-r--r-- | src/remove.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/cp-hash.c b/src/cp-hash.c index 86bc71859..1276a92c8 100644 --- a/src/cp-hash.c +++ b/src/cp-hash.c @@ -50,7 +50,7 @@ struct Src_to_dest /* This table maps source dev/ino to destination file name. We use it to preserve hard links when copying. */ -static struct hash_table *src_to_dest; +static Hash_table *src_to_dest; /* Initial size of the above hash table. */ #define INITIAL_TABLE_SIZE 103 @@ -84,7 +84,7 @@ struct entry }; /* A set of dev/ino pairs. */ -static struct hash_table *htab; +static Hash_table *htab; /* Structure for dynamically resizable strings. */ 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; |