summaryrefslogtreecommitdiff
path: root/src/cp-hash.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/cp-hash.c
parente38b3095cb2aa107120b70add989405e0b105d2b (diff)
downloadcoreutils-4d13e6fa55b4c96ab22ab646c52a62797cb33858.tar.xz
Use opaque type, Hash_table, not `struct hash_table'.
Diffstat (limited to 'src/cp-hash.c')
-rw-r--r--src/cp-hash.c2
1 files changed, 1 insertions, 1 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