msvcrt: Fix a compiler warning.

This commit is contained in:
Austin English 2008-11-20 18:07:07 -06:00 committed by Alexandre Julliard
parent a413c38a7c
commit 8efc3fec1d
1 changed files with 1 additions and 1 deletions

View File

@ -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 ))
{