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

src/ls.c

index 7f42953bd815628ea52f6c65983836ee6576083e..c8d471f89aed831109d956e17342a01a72b20239 100644 (file)
--- a/src/ls.c
+++ b/src/ls.c
@@ -911,8 +911,8 @@ dired_dump_obstack (const char *prefix, struct obstack *os)
     }
 }
 
-static unsigned int
-dev_ino_hash (void const *x, unsigned int table_size)
+static size_t
+dev_ino_hash (void const *x, size_t table_size)
 {
   struct dev_ino const *p = x;
   return (uintmax_t) p->st_ino % table_size;