mirror of
https://github.com/reactos/wine.git
synced 2025-02-14 17:49:51 +00:00
Fixed mistyped variable name in MSVCRT__fpclass().
This commit is contained in:
parent
efc32d1353
commit
e884cc2b08
@ -325,7 +325,7 @@ int __cdecl MSVCRT__fpclass(double num)
|
||||
#else
|
||||
if (!finite(num))
|
||||
return _FPCLASS_QNAN;
|
||||
return num == 0.0 ? _FPCLASS_PZ : (d < 0 ? _FPCLASS_NN : _FPCLASS_PN);
|
||||
return num == 0.0 ? _FPCLASS_PZ : (num < 0 ? _FPCLASS_NN : _FPCLASS_PN);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user