diff options
author | Jim Meyering <jim@meyering.net> | 2003-10-25 15:32:07 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-10-25 15:32:07 +0000 |
commit | b2c8266f8be2b0f917a42a7231ebafb64a51eaab (patch) | |
tree | b95d4d05a1f89d3d2308c23fcac4276412aba395 | |
parent | 7795d5d04a3e8c609ece0874710b64e92fb3016c (diff) | |
download | coreutils-b2c8266f8be2b0f917a42a7231ebafb64a51eaab.tar.xz |
(dev_ino_hash): Adjust to reflect
type changes (unsigned int -> size_t) in hash.c.
-rw-r--r-- | src/ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |