diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-12-18 17:16:46 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-12-18 17:16:46 (GMT) |
commit | 55fc5067b66e77bc8b21aa768c4e8fb035cd2bc7 (patch) | |
tree | 8f96b2cdc1a262e8757c7a9eb25562cc465a1901 /src/H5Fdeprec.c | |
parent | bacabb3534e146d8969a34f6434e3463969688ff (diff) | |
download | hdf5-55fc5067b66e77bc8b21aa768c4e8fb035cd2bc7.zip hdf5-55fc5067b66e77bc8b21aa768c4e8fb035cd2bc7.tar.gz hdf5-55fc5067b66e77bc8b21aa768c4e8fb035cd2bc7.tar.bz2 |
Updated enums in VOL va_lists to be passed as ints.
Diffstat (limited to 'src/H5Fdeprec.c')
-rw-r--r-- | src/H5Fdeprec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fdeprec.c b/src/H5Fdeprec.c index 1a2418d..077ad52 100644 --- a/src/H5Fdeprec.c +++ b/src/H5Fdeprec.c @@ -225,7 +225,7 @@ H5Fset_latest_format(hid_t file_id, hbool_t latest_format) low = H5F_LIBVER_EARLIEST; /* Set the library's version bounds */ - if(H5VL_file_optional(vol_obj, H5P_DATASET_XFER_DEFAULT, H5_REQUEST_NULL, H5VL_NATIVE_FILE_SET_LIBVER_BOUNDS, low, high) < 0) + if(H5VL_file_optional(vol_obj, H5P_DATASET_XFER_DEFAULT, H5_REQUEST_NULL, H5VL_NATIVE_FILE_SET_LIBVER_BOUNDS, (int)low, (int)high) < 0) HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "can't set library version bounds") done: |