summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorM. Scot Breitenfeld <brtnfld@hdfgroup.org>2018-05-11 16:45:03 (GMT)
committerM. Scot Breitenfeld <brtnfld@hdfgroup.org>2018-05-11 16:45:03 (GMT)
commit6da75cffd2356fb5b5b92204b2d1c34a0e2e99ea (patch)
treef650fd5a94b0abe52de4c0b2c84fac52574f9ff3 /src/H5F.c
parent88e0c3e748783b040bebdc014ca717e6b5ec2df6 (diff)
downloadhdf5-6da75cffd2356fb5b5b92204b2d1c34a0e2e99ea.zip
hdf5-6da75cffd2356fb5b5b92204b2d1c34a0e2e99ea.tar.gz
hdf5-6da75cffd2356fb5b5b92204b2d1c34a0e2e99ea.tar.bz2
Fixed libver bounds underscore issue
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5F.c b/src/H5F.c
index 6c2d594..6d62c08 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -1476,7 +1476,7 @@ H5Fset_libver_bounds(hid_t file_id, H5F_libver_t low, H5F_libver_t high)
HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "can't set collective metadata read info")
/* Call internal set_libver_bounds function */
- if(H5F_set_libver_bounds(f, low, high) < 0)
+ if(H5F__set_libver_bounds(f, low, high) < 0)
HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "cannot set low/high bounds")
done: