Fixed mistyped variable name in MSVCRT__fpclass().

This commit is contained in:
Gerald Pfeifer 2001-01-12 20:30:41 +00:00 committed by Alexandre Julliard
parent efc32d1353
commit e884cc2b08
1 changed files with 1 additions and 1 deletions

View File

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