diff options
author | danger <danger@FreeBSD.org> | 2008-07-06 11:31:20 +0000 |
---|---|---|
committer | danger <danger@FreeBSD.org> | 2008-07-06 11:31:20 +0000 |
commit | 3fba957487e50ca7eac7385fc9918cff1486d586 (patch) | |
tree | 86d1dafb74af4615b56c3e62123d435aed82f5e5 /lib/libc/stdlib | |
parent | 0e8b3381e587e96d3c5e751ca03ff7d290a7e9ca (diff) | |
download | FreeBSD-src-3fba957487e50ca7eac7385fc9918cff1486d586.zip FreeBSD-src-3fba957487e50ca7eac7385fc9918cff1486d586.tar.gz |
- remove superfluous word
- remove contractions
MFC after: 3 days
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/hcreate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/hcreate.c b/lib/libc/stdlib/hcreate.c index 5878085..c68fe1b 100644 --- a/lib/libc/stdlib/hcreate.c +++ b/lib/libc/stdlib/hcreate.c @@ -93,7 +93,7 @@ hcreate(size_t nel) size_t idx; unsigned int p2; - /* Make sure this this isn't called when a table already exists. */ + /* Make sure this is not called when a table already exists. */ if (htable != NULL) { errno = EINVAL; return 0; @@ -103,11 +103,11 @@ hcreate(size_t nel) if (nel < MIN_BUCKETS) nel = MIN_BUCKETS; - /* If it's too large, cap it. */ + /* If it is too large, cap it. */ if (nel > MAX_BUCKETS) nel = MAX_BUCKETS; - /* If it's is not a power of two in size, round up. */ + /* If it is not a power of two in size, round up. */ if ((nel & (nel - 1)) != 0) { for (p2 = 0; nel != 0; p2++) nel >>= 1; |