fixed off by one error

This commit is contained in:
Tobias Brunner 2008-12-04 16:33:39 +00:00
parent 7710a286ca
commit ffa6450695
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ static u_int get_nearest_powerof2(u_int n)
{
u_int i;
--n;
for (--n, i = 1; i < sizeof(u_int) * 8; i <<= 1)
for (i = 1; i < sizeof(u_int) * 8; i <<= 1)
{
n |= n >> i;
}