Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 620732
Collapse All | Expand All

(-)a/htapp.cc (-2 / +2 lines)
Lines 3021-3028 void do_modal_resize() Link Here
3021
3021
3022
static uint isqr(uint u)
3022
static uint isqr(uint u)
3023
{
3023
{
3024
	uint a = 2;
3024
	int a = 2;
3025
	uint b = u/a;
3025
	int b = u/a;
3026
	while (abs(a - b) > 1) {
3026
	while (abs(a - b) > 1) {
3027
		a = (a+b)/2;
3027
		a = (a+b)/2;
3028
		b = u/a;
3028
		b = u/a;

Return to bug 620732