summaryrefslogtreecommitdiff
path: root/src/cp-hash.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-10-25 15:33:43 +0000
committerJim Meyering <jim@meyering.net>2003-10-25 15:33:43 +0000
commit0a875d3d7b456f88e1c261834b48a9ae59254457 (patch)
treecfa03d8b578005d5fdbefcb306199952a9956028 /src/cp-hash.c
parent24a7d395e370a8707873ea2a759fcc491968884e (diff)
downloadcoreutils-0a875d3d7b456f88e1c261834b48a9ae59254457.tar.xz
(src_to_dest_hash): Adjust to reflect
type changes (unsigned int -> size_t) in hash.c.
Diffstat (limited to 'src/cp-hash.c')
-rw-r--r--src/cp-hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cp-hash.c b/src/cp-hash.c
index 6200f5e9b..a9aa16b06 100644
--- a/src/cp-hash.c
+++ b/src/cp-hash.c
@@ -52,8 +52,8 @@ static Hash_table *src_to_dest;
/* Initial size of the above hash table. */
#define INITIAL_TABLE_SIZE 103
-static unsigned int
-src_to_dest_hash (void const *x, unsigned int table_size)
+static size_t
+src_to_dest_hash (void const *x, size_t table_size)
{
struct Src_to_dest const *p = x;