summaryrefslogtreecommitdiffstats
path: root/src/H5Fint.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/H5Fint.c
parent88e0c3e748783b040bebdc014ca717e6b5ec2df6 (diff)
downloadhdf5-6da75cffd2356fb5b5b92204b2d1c34a0e2e99ea.zip
hdf5-6da75cffd2356fb5b5b92204b2d1c34a0e2e99ea.tar.gz
hdf5-6da75cffd2356fb5b5b92204b2d1c34a0e2e99ea.tar.bz2
Fixed libver bounds underscore issue
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r--src/H5Fint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c
index e6188e6..a7209ce 100644
--- a/src/H5Fint.c
+++ b/src/H5Fint.c
@@ -2761,7 +2761,7 @@ H5F_set_store_msg_crt_idx(H5F_t *f, hbool_t flag)
/*-------------------------------------------------------------------------
- * Function: H5F_set_libver_bounds()
+ * Function: H5F__set_libver_bounds()
*
* Purpose: Set the file's low and high bound to the input parameters
* 'low' and 'high' respectively.
@@ -2775,7 +2775,7 @@ H5F_set_store_msg_crt_idx(H5F_t *f, hbool_t flag)
*-------------------------------------------------------------------------
*/
herr_t
-H5F_set_libver_bounds(H5F_t *f, H5F_libver_t low, H5F_libver_t high)
+H5F__set_libver_bounds(H5F_t *f, H5F_libver_t low, H5F_libver_t high)
{
herr_t ret_value = SUCCEED; /* Return value */
@@ -2817,7 +2817,7 @@ H5F_set_libver_bounds(H5F_t *f, H5F_libver_t low, H5F_libver_t high)
done:
FUNC_LEAVE_NOAPI(ret_value)
-} /* H5F_set_libver_bounds() */
+} /* H5F__set_libver_bounds() */
/*-------------------------------------------------------------------------