- Fix thinko in last change.

This commit is contained in:
Sylvain Pion 2001-03-10 16:59:36 +00:00
parent 70e5f351d8
commit 9cd26ae553
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ void print_test()
for (int i=-2; i<3; i++)
std::cout << MPF(i) << " ";
std::cout << std::endl;
for (int j=-2; i<3; i++)
for (int j=-2; j<3; j++)
std::cout << MPF(j+65536) << " ";
std::cout << std::endl;
}