[PATCH 2/4] dlls/msvcrt: use correct integral type

Eric Pouech eric.pouech at gmail.com
Fri Feb 4 02:49:47 CST 2022


Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---
 dlls/msvcrt/math.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msvcrt/math.c b/dlls/msvcrt/math.c
index b13a4e03fd1..33afe8d1d90 100644
--- a/dlls/msvcrt/math.c
+++ b/dlls/msvcrt/math.c
@@ -10314,7 +10314,7 @@ double CDECL _except1(DWORD fpe, _FP_OPERATION_CODE op, double arg, double res,
 {
     ULONG_PTR exception_arg;
     DWORD exception = 0;
-    DWORD fpword = 0;
+    unsigned int fpword = 0;
     WORD operation;
     int raise = 0;
 




More information about the wine-devel mailing list