summaryrefslogtreecommitdiffstats
path: root/src/H5Dsingle.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Dsingle.c')
-rw-r--r--src/H5Dsingle.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Dsingle.c b/src/H5Dsingle.c
index b49a578..b472f7e 100644
--- a/src/H5Dsingle.c
+++ b/src/H5Dsingle.c
@@ -61,7 +61,7 @@ static herr_t H5D__single_idx_init(const H5D_chk_idx_info_t *idx_info,
const H5S_t *space, haddr_t dset_ohdr_addr);
static herr_t H5D__single_idx_create(const H5D_chk_idx_info_t *idx_info);
static hbool_t H5D__single_idx_is_space_alloc(const H5O_storage_chunk_t *storage);
-static herr_t H5D__single_idx_insert_addr(const H5D_chk_idx_info_t *idx_info,
+static herr_t H5D__single_idx_insert(const H5D_chk_idx_info_t *idx_info,
H5D_chunk_ud_t *udata, const H5D_t *dset);
static herr_t H5D__single_idx_get_addr(const H5D_chk_idx_info_t *idx_info,
H5D_chunk_ud_t *udata);
@@ -88,7 +88,7 @@ const H5D_chunk_ops_t H5D_COPS_SINGLE[1] = {{
H5D__single_idx_init, /* init */
H5D__single_idx_create, /* create */
H5D__single_idx_is_space_alloc, /* is_space_alloc */
- H5D__single_idx_insert_addr, /* insert */
+ H5D__single_idx_insert, /* insert */
H5D__single_idx_get_addr, /* get_addr */
NULL, /* resize */
H5D__single_idx_iterate, /* iterate */
@@ -208,7 +208,7 @@ H5D__single_idx_is_space_alloc(const H5O_storage_chunk_t *storage)
/*-------------------------------------------------------------------------
- * Function: H5D__single_idx_insert_addr
+ * Function: H5D__single_idx_insert
*
* Purpose: Allocate space for the single chunk
*
@@ -219,7 +219,7 @@ H5D__single_idx_is_space_alloc(const H5O_storage_chunk_t *storage)
*-------------------------------------------------------------------------
*/
static herr_t
-H5D__single_idx_insert_addr(const H5D_chk_idx_info_t *idx_info, H5D_chunk_ud_t *udata,
+H5D__single_idx_insert(const H5D_chk_idx_info_t *idx_info, H5D_chunk_ud_t *udata,
const H5D_t *dset)
{
herr_t ret_value = SUCCEED; /* Return value */
@@ -255,7 +255,7 @@ H5D__single_idx_insert_addr(const H5D_chk_idx_info_t *idx_info, H5D_chunk_ud_t *
done:
FUNC_LEAVE_NOAPI(ret_value)
-} /* H5D__single_idx_insert_addr() */
+} /* H5D__single_idx_insert() */
/*-------------------------------------------------------------------------