diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-11-26 17:05:11 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-11-26 17:05:11 (GMT) |
commit | 0e70c2c983360beff70ea62ee2577a2cb7678382 (patch) | |
tree | b4be4c7a00551cb36ecb1fae2435aa8dab07330f /test | |
parent | 2bffbf29432c1b6c66f6ea1f3187ad14c0f998e7 (diff) | |
download | hdf5-0e70c2c983360beff70ea62ee2577a2cb7678382.zip hdf5-0e70c2c983360beff70ea62ee2577a2cb7678382.tar.gz hdf5-0e70c2c983360beff70ea62ee2577a2cb7678382.tar.bz2 |
[svn-r7892] Purpose:
Code cleanup
Description:
Clean up a compiler warning
Platforms tested:
Titan (user02)
Too minor to require h5committest
Diffstat (limited to 'test')
-rw-r--r-- | test/dtypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dtypes.c b/test/dtypes.c index 088794f..f8473f6 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -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); |