summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2017-12-07 23:05:25 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2017-12-07 23:05:25 (GMT)
commitf3715a69d5016372e265ac2e21b2a65e0e756306 (patch)
tree2dd47bb4e7f742e2ddd25b5cc2a00732b0c23360 /src/H5Dint.c
parent02d6a8b3ab923b386fd56816a18c6bf5640c4feb (diff)
downloadhdf5-f3715a69d5016372e265ac2e21b2a65e0e756306.zip
hdf5-f3715a69d5016372e265ac2e21b2a65e0e756306.tar.gz
hdf5-f3715a69d5016372e265ac2e21b2a65e0e756306.tar.bz2
Fix for daily test failures.
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index b6c0341..2bf7f6e 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -2544,7 +2544,7 @@ H5D__vlen_get_buf_size(void H5_ATTR_UNUSED *elem, hid_t type_id, unsigned H5_ATT
HGOTO_ERROR(H5E_DATASET, H5E_NOSPACE, FAIL, "can't resize tbuf")
/* Select point to read in */
- if(H5S_select_elements(vlen_bufsize->fspace, H5S_SELECT_SET, (size_t)1, point) < 0)
+ if(H5S_select_elements(vlen_bufsize->fspace, H5S_SELECT_SET, (hsize_t)1, point) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTCREATE, FAIL, "can't select point")
/* Read in the point (with the custom VL memory allocator) */