re PR go/47910 (typo in __go_map_next_prime)
PR go/47910 Correct search for next prime in libgo map code. From-SVN: r170808
This commit is contained in:
parent
93b826f0fd
commit
a601335076
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ __go_map_next_prime (unsigned long n)
|
|||
{
|
||||
size_t mid;
|
||||
|
||||
mid = (low + high / 2);
|
||||
mid = (low + high) / 2;
|
||||
|
||||
/* Here LOW <= MID < HIGH. */
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue