msvcrt: Use correct integral type in _except1.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-02-04 09:49:47 +01:00 committed by Alexandre Julliard
parent 9ddcbb5f64
commit 948f465da7
1 changed files with 1 additions and 1 deletions

View File

@ -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;