1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 18:19:00 +02:00

(dev_ino_hash): Adjust to reflect

type changes (unsigned int -> size_t) in hash.c.
This commit is contained in:
Jim Meyering
2003-10-25 15:32:07 +00:00
parent 7795d5d04a
commit b2c8266f8b
+2 -2
View File
@@ -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;