mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-25 06:52:56 +02:00
11 lines
296 B
Diff
11 lines
296 B
Diff
--- htapp.cc.orig 2018-01-10 18:38:43.062092621 +0100
|
|
+++ htapp.cc 2018-01-10 18:39:04.732035497 +0100
|
|
@@ -3023,7 +3023,7 @@ static uint isqr(uint u)
|
|
{
|
|
uint a = 2;
|
|
uint b = u/a;
|
|
- while (abs(a - b) > 1) {
|
|
+ while (abs((long int)a - (long int)b) > 1) {
|
|
a = (a+b)/2;
|
|
b = u/a;
|
|
}
|