From: Jim Meyering Date: Sat, 25 Oct 2003 15:33:43 +0000 (+0000) Subject: (src_to_dest_hash): Adjust to reflect X-Git-Tag: COREUTILS-5_1_0~301 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0a875d3d7b456f88e1c261834b48a9ae59254457;p=platform%2Fupstream%2Fcoreutils.git (src_to_dest_hash): Adjust to reflect type changes (unsigned int -> size_t) in 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;