Commit 8efc3fec authored by Austin English's avatar Austin English Committed by Alexandre Julliard

msvcrt: Fix a compiler warning.

parent a413c38a
......@@ -420,8 +420,8 @@ int CDECL _fpclass(double num)
#ifdef FP_PNORM
case FP_PNORM: return MSVCRT__FPCLASS_PN;
#endif
default: return MSVCRT__FPCLASS_PN;
}
return MSVCRT__FPCLASS_PN;
#elif defined (fpclassify)
switch (fpclassify( num ))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment