diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2021-09-29 13:59:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 13:59:34 (GMT) |
commit | c7d79425109a4363cc3ab6817e054712b73c5cb1 (patch) | |
tree | 277f0a3c5a545a1c06743f620ab8e5d2783a45e6 | |
parent | 35cf4a69bfc2abd6d1bb1782c3a34feb3f504b57 (diff) | |
download | hdf5-c7d79425109a4363cc3ab6817e054712b73c5cb1.zip hdf5-c7d79425109a4363cc3ab6817e054712b73c5cb1.tar.gz hdf5-c7d79425109a4363cc3ab6817e054712b73c5cb1.tar.bz2 |
OESS-168: Remove clang warnings (#1049)
This patch will remove clang double-promotion warning.
-rw-r--r-- | tools/test/perform/overhead.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test/perform/overhead.c b/tools/test/perform/overhead.c index 60ec8d8..64192ba 100644 --- a/tools/test/perform/overhead.c +++ b/tools/test/perform/overhead.c @@ -187,7 +187,7 @@ test(fill_t fill_style, const double splits[], hbool_t verbose, hbool_t use_rdcc if (!use_rdcc) { if (H5Pget_cache(fapl, &mdc_nelmts, NULL, NULL, NULL) < 0) goto error; - if (H5Pset_cache(fapl, mdc_nelmts, 0, 0, 0.0F) < 0) + if (H5Pset_cache(fapl, mdc_nelmts, 0, 0, 0.0) < 0) goto error; } if ((file = H5Fcreate(FILE_NAME_1, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0) |