summaryrefslogtreecommitdiffstats
path: root/src/H5Dchunk.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-05-16 18:19:56 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-05-16 18:19:56 (GMT)
commit519685d05cdb53e6e641587863c45773cca571db (patch)
tree59d0d47423fd5913562b3fe37ada1fd3bd8c4206 /src/H5Dchunk.c
parent7f616e0b8aea6a4f41aab38fa25ca2082ddaf9bf (diff)
downloadhdf5-519685d05cdb53e6e641587863c45773cca571db.zip
hdf5-519685d05cdb53e6e641587863c45773cca571db.tar.gz
hdf5-519685d05cdb53e6e641587863c45773cca571db.tar.bz2
Address daily test failure for hdf5_1_10:
Fix the testhdf5 failing test in the selection code which segfaults.
Diffstat (limited to 'src/H5Dchunk.c')
-rw-r--r--src/H5Dchunk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c
index 89c182d..d24c6d4 100644
--- a/src/H5Dchunk.c
+++ b/src/H5Dchunk.c
@@ -2077,7 +2077,7 @@ H5D__chunk_mem_cb(void H5_ATTR_UNUSED *elem, const H5T_t H5_ATTR_UNUSED *type, u
} /* end else */
/* Move memory selection iterator to next element in selection */
- if(H5S_SELECT_ITER_NEXT(&fm->mem_iter, (hsize_t)1) < 0)
+ if(H5S_SELECT_ITER_NEXT(&fm->mem_iter, (size_t)1) < 0)
HGOTO_ERROR(H5E_DATASPACE, H5E_CANTNEXT, FAIL, "unable to move to next iterator location")
done: