Blame patches/musl_no_complex_host-1.2.2.local.patch

ed4905
diff --git a/src/math/sqrtl.c b/src/math/sqrtl.c
ed4905
index 1b9f19c7..0a8efb9f 100644
ed4905
--- musl-1.2.2.orig/src/math/sqrtl.c
ed4905
+++ musl-1.2.2/src/math/sqrtl.c
ed4905
@@ -227,7 +227,7 @@ long double sqrtl(long double x)
ed4905
 	r = mul64(u, r) << 1;
ed4905
 	/* |r sqrt(m) - 1| < 0x1.c001p-59, switch to 128bit */
ed4905
 
ed4905
-	static const u128 threel = {.hi=three<<32, .lo=0};
ed4905
+	static const u128 threel = {.hi=(uint64_t)0xc0000000<<32, .lo=0};
ed4905
 	u128 rl, sl, dl, ul;
ed4905
 	rl.hi = r;
ed4905
 	rl.lo = 0;