summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-11-26 17:05:11 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-11-26 17:05:11 (GMT)
commit0e70c2c983360beff70ea62ee2577a2cb7678382 (patch)
treeb4be4c7a00551cb36ecb1fae2435aa8dab07330f /test
parent2bffbf29432c1b6c66f6ea1f3187ad14c0f998e7 (diff)
downloadhdf5-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.c2
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);