]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(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 6200f5e9b2118af7f3616aa7b81169f4725a4761..a9aa16b0684b87e660bec340ebf0c87bde448d1c 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;