Skip to content
Snippets Groups Projects
Commit e884cc2b authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard
Browse files

Fixed mistyped variable name in MSVCRT__fpclass().

parent efc32d13
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment