summaryrefslogtreecommitdiffstats
path: root/src/H5Fint.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-08-14 17:43:18 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-08-14 17:43:18 (GMT)
commit10bea9ac460e781f7e71afb3b85d9a4e4678c3a1 (patch)
tree5e49fad0d2c37732ae684f0b6d4fcd6e790f6ff8 /src/H5Fint.c
parent674a945cc740531a9f0b01dcea16d0aa9f45c6ea (diff)
downloadhdf5-10bea9ac460e781f7e71afb3b85d9a4e4678c3a1.zip
hdf5-10bea9ac460e781f7e71afb3b85d9a4e4678c3a1.tar.gz
hdf5-10bea9ac460e781f7e71afb3b85d9a4e4678c3a1.tar.bz2
Fix for HDFFV-10813 H5Fset_metadata_read_retry_info() test fails on jelly with PGI/19.
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r--src/H5Fint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c
index c9c6658..77b0cef 100644
--- a/src/H5Fint.c
+++ b/src/H5Fint.c
@@ -2993,7 +2993,7 @@ H5F_set_retries(H5F_t *f)
f->shared->retries_nbins = 0;
if(f->shared->read_attempts > 1) {
tmp = HDlog10((double)(f->shared->read_attempts - 1));
- f->shared->retries_nbins = (unsigned)tmp + 1;
+ f->shared->retries_nbins = (unsigned)(tmp + 1);
}
FUNC_LEAVE_NOAPI(SUCCEED)