diff options
author | Jim Meyering <jim@meyering.net> | 2001-01-20 09:34:20 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-01-20 09:34:20 +0000 |
commit | c1481129416fc04f268b5e05a0c7de3aa6c29d2e (patch) | |
tree | e14929c06fb5efd2cca62448927f4b538b3703b5 /lib | |
parent | 19b3a9d1028f7a23ff12086448e117fe4f9c4c52 (diff) | |
download | coreutils-c1481129416fc04f268b5e05a0c7de3aa6c29d2e.tar.xz |
Fix typo: s/false/0/.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/hash.c b/lib/hash.c index a94a5495a..0c2d423cf 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -1,5 +1,5 @@ /* hash - hashing table processing. - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. Written by Jim Meyering, 1992. This program is free software; you can redistribute it and/or modify @@ -111,7 +111,7 @@ static const Hash_tuning default_tuning = DEFAULT_SHRINK_FACTOR, DEFAULT_GROWTH_THRESHOLD, DEFAULT_GROWTH_FACTOR, - false + 0 }; /* Information and lookup. */ |