diff options
author | Jim Meyering <jim@meyering.net> | 2003-10-25 15:33:05 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-10-25 15:33:05 +0000 |
commit | c965791d3e8c90da71e5dcb0f0c3be341459b885 (patch) | |
tree | 761ff73131b2fbaf134cbb59877b13be352c89af /src | |
parent | b2c8266f8be2b0f917a42a7231ebafb64a51eaab (diff) | |
download | coreutils-c965791d3e8c90da71e5dcb0f0c3be341459b885.tar.xz |
(entry_hash): Adjust to reflect
type changes (unsigned int -> size_t) in hash.c.
Diffstat (limited to 'src')
-rw-r--r-- | src/du.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |