diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-11-26 17:05:07 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-11-26 17:05:07 (GMT) |
commit | 4a77040deb408bda10ce7a000a4f27cbc84e2283 (patch) | |
tree | 7d939d4bf7c9bac0a918e558426b6e5515921af7 | |
parent | 54712d33ebcd48f298741ced8c579c582c86ec42 (diff) | |
download | hdf5-4a77040deb408bda10ce7a000a4f27cbc84e2283.zip hdf5-4a77040deb408bda10ce7a000a4f27cbc84e2283.tar.gz hdf5-4a77040deb408bda10ce7a000a4f27cbc84e2283.tar.bz2 |
[svn-r7891] Purpose:
Code cleanup
Description:
Clean up a compiler warning
Platforms tested:
Titan (user02)
Too minor to require h5committest
-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 95f71e2..ba35424 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -4234,7 +4234,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); |