diff options
Diffstat (limited to 'src/H5Goh.c')
-rw-r--r-- | src/H5Goh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Goh.c b/src/H5Goh.c index 49dae84..6ea3a00 100644 --- a/src/H5Goh.c +++ b/src/H5Goh.c @@ -42,7 +42,7 @@ /********************/ static htri_t H5O_group_isa(H5O_t *loc); -static hid_t H5O_group_open(H5G_loc_t *obj_loc, hid_t dxpl_id); +static hid_t H5O_group_open(const H5G_loc_t *obj_loc, hid_t dxpl_id); static H5O_loc_t *H5O_group_get_oloc(hid_t obj_id); /*********************/ @@ -126,7 +126,7 @@ done: *------------------------------------------------------------------------- */ static hid_t -H5O_group_open(H5G_loc_t *obj_loc, hid_t dxpl_id) +H5O_group_open(const H5G_loc_t *obj_loc, hid_t dxpl_id) { H5G_t *grp = NULL; /* Group opened */ hid_t ret_value; /* Return value */ |