[svn-r7892] Purpose:

Code cleanup

Description:
    Clean up a compiler warning

Platforms tested:
    Titan (user02)
    Too minor to require h5committest
This commit is contained in:
Quincey Koziol 2003-11-26 12:05:11 -05:00
parent 2bffbf2943
commit 0e70c2c983

View File

@ -5187,7 +5187,7 @@ test_conv_flt_1 (const char *name, hid_t src, hid_t dst)
/* Re-scale the mantissas based on any exponent difference */
if(expo_diff!=0)
check_mant[0] = ldexp(check_mant[0],(double)expo_diff);
check_mant[0] = ldexp(check_mant[0],expo_diff);
/* Compute the proper epsilon */
epsilon=ldexp(epsilon,-valid_bits);