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:
parent
9ddcbb5f64
commit
948f465da7
|
@ -10314,7 +10314,7 @@ double CDECL _except1(DWORD fpe, _FP_OPERATION_CODE op, double arg, double res,
|
||||||
{
|
{
|
||||||
ULONG_PTR exception_arg;
|
ULONG_PTR exception_arg;
|
||||||
DWORD exception = 0;
|
DWORD exception = 0;
|
||||||
DWORD fpword = 0;
|
unsigned int fpword = 0;
|
||||||
WORD operation;
|
WORD operation;
|
||||||
int raise = 0;
|
int raise = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue