From 45a0895c396df222844d1fa97b3dbd7b76d41ca4 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Wed, 4 Jun 2025 15:25:18 +0200 Subject: [PATCH] Fix fmod regression. --- lib/std/math/math_nolibc/__fmod.c3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/math/math_nolibc/__fmod.c3 b/lib/std/math/math_nolibc/__fmod.c3 index 7e23e4c16..150b74824 100644 --- a/lib/std/math/math_nolibc/__fmod.c3 +++ b/lib/std/math/math_nolibc/__fmod.c3 @@ -115,7 +115,7 @@ fn float fmodf(float x, float y) @extern("fmodf") @weak @nostrip } else { - uy.i &= (ulong)-1 >> 9; + uy.i &= (uint)-1 >> 9; uy.i |= 1U << 23; }