Add (int) cast.

This commit is contained in:
Jeff Johnston 2005-02-24 19:02:35 +00:00
parent f4fd7b4c72
commit 2598f908ca
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
signbit = w & 0x80000000;
/* Extract exponent field. */
exponent_less_127 = ((w & 0x7f800000) >> 23) - 127;
exponent_less_127 = (int)((w & 0x7f800000) >> 23) - 127;
if (exponent_less_127 < 23)
{