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:
Ian Lance Taylor 2011-03-09 05:32:36 +00:00
parent 93b826f0fd
commit a601335076
1 changed files with 1 additions and 1 deletions

View File

@ -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. */