diff options
Diffstat (limited to 'src/hash.c')
-rw-r--r-- | src/hash.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,6 @@ /* Hash tables. - Copyright (C) 2000-2011, 2015, 2018 Free Software Foundation, Inc. + Copyright (C) 2000-2011, 2015, 2018-2019 Free Software Foundation, + Inc. This file is part of GNU Wget. @@ -199,7 +200,7 @@ struct hash_table { being HASHFUN. */ #define HASH_POSITION(key, hashfun, size) ((hashfun) (key) % size) -/* Find a prime near, but greather than or equal to SIZE. The primes +/* Find a prime near, but greater than or equal to SIZE. The primes are looked up from a table with a selection of primes convenient for this purpose. |