Remove erroneous call.

This commit is contained in:
Quincey Koziol 2018-10-29 17:26:33 -05:00
parent 8c37f531a9
commit 4c6d8d376c

View File

@ -224,10 +224,6 @@ H5Fset_latest_format(hid_t file_id, hbool_t latest_format)
if(!latest_format)
low = H5F_LIBVER_EARLIEST;
/* Call private set_libver_bounds function to set the bounds */
if(H5F__set_libver_bounds(f, low, high) < 0)
HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "cannot set low/high bounds")
/* Set the library's version bounds */
if(H5VL_file_optional(vol_obj->data, vol_obj->plugin->cls, H5P_DATASET_XFER_DEFAULT, H5_REQUEST_NULL, H5VL_FILE_SET_LIBVER_BOUNDS, low, high) < 0)
HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "can't set library version bounds")