diff options
author | Kyle Evans <kevans@FreeBSD.org> | 2020-10-16 17:51:09 +0000 |
---|---|---|
committer | Kyle Evans <kevans@FreeBSD.org> | 2020-10-16 17:51:09 +0000 |
commit | 6d55b98d523b9d60e062419bb021eff49f40a239 (patch) | |
tree | e6393fa4d1526f488e60bfccf5ad73a669145d5f /lib | |
parent | bf9580a118e399f3f3d37b3466877ba1c2c2a6f6 (diff) | |
download | src-test2-6d55b98d523b9d60e062419bb021eff49f40a239.tar.gz src-test2-6d55b98d523b9d60e062419bb021eff49f40a239.zip |
Notes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdlib/bsearch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/bsearch.c b/lib/libc/stdlib/bsearch.c index 432bb918f353..b5c342635c01 100644 --- a/lib/libc/stdlib/bsearch.c +++ b/lib/libc/stdlib/bsearch.c @@ -53,7 +53,7 @@ __FBSDID("$FreeBSD$"); * is odd, moving left simply involves halving lim: e.g., when lim * is 5 we look at item 2, so we change lim to 2 so that we will * look at items 0 & 1. If lim is even, the same applies. If lim - * is odd, moving right again involes halving lim, this time moving + * is odd, moving right again involves halving lim, this time moving * the base up one item past p: e.g., when lim is 5 we change base * to item 3 and make lim 2 so that we will look at items 3 and 4. * If lim is even, however, we have to shrink it by one before |