From 0a875d3d7b456f88e1c261834b48a9ae59254457 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 25 Oct 2003 15:33:43 +0000 Subject: (src_to_dest_hash): Adjust to reflect type changes (unsigned int -> size_t) in hash.c. --- src/cp-hash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cp-hash.c') 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; -- cgit v1.2.3-54-g00ecf