]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(entry_hash): Adjust to reflect
authorJim Meyering <jim@meyering.net>
Sat, 25 Oct 2003 15:33:05 +0000 (15:33 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 25 Oct 2003 15:33:05 +0000 (15:33 +0000)
type changes (unsigned int -> size_t) in hash.c.

src/du.c

index 584d39ba10321f9c60899d43de319d7f8a2cc9f7..6342a49aac050289f4cdb79ccea27fe10bd4b19c 100644 (file)
--- a/src/du.c
+++ b/src/du.c
@@ -201,8 +201,8 @@ kB 1000, K 1024, MB 1000*1000, M 1024*1024, and so on for G, T, P, E, Z, Y.\n\
   exit (status);
 }
 
-static unsigned int
-entry_hash (void const *x, unsigned int table_size)
+static size_t
+entry_hash (void const *x, size_t table_size)
 {
   struct entry const *p = x;