(src_to_dest_hash): Adjust to reflect
authorJim Meyering <jim@meyering.net>
Sat, 25 Oct 2003 15:33:43 +0000 (15:33 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 25 Oct 2003 15:33:43 +0000 (15:33 +0000)
type changes (unsigned int -> size_t) in hash.c.

src/cp-hash.c

index 6200f5e..a9aa16b 100644 (file)
@@ -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;