diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2022-04-26 18:18:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 18:18:18 (GMT) |
commit | d7565f316de2516f119e464e6450c4f8c73476b2 (patch) | |
tree | fcec98687ef88e0c8f5a1b377d48f5349fdae356 /src/H5Gpkg.h | |
parent | 417ee1393b425d5c7c998562e7fb492e28928643 (diff) | |
download | hdf5-d7565f316de2516f119e464e6450c4f8c73476b2.zip hdf5-d7565f316de2516f119e464e6450c4f8c73476b2.tar.gz hdf5-d7565f316de2516f119e464e6450c4f8c73476b2.tar.bz2 |
Address some warnings from casting away of const (#1684)
Diffstat (limited to 'src/H5Gpkg.h')
-rw-r--r-- | src/H5Gpkg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h index d108b03..6939d2f 100644 --- a/src/H5Gpkg.h +++ b/src/H5Gpkg.h @@ -373,7 +373,7 @@ H5_DLL herr_t H5G__stab_valid(H5O_loc_t *grp_oloc, H5O_stab_t *alt_stab); /* * Functions that understand symbol table entries. */ -H5_DLL void H5G__ent_copy(H5G_entry_t *dst, const H5G_entry_t *src, H5_copy_depth_t depth); +H5_DLL void H5G__ent_copy(H5G_entry_t *dst, H5G_entry_t *src, H5_copy_depth_t depth); H5_DLL void H5G__ent_reset(H5G_entry_t *ent); H5_DLL herr_t H5G__ent_decode_vec(const H5F_t *f, const uint8_t **pp, const uint8_t *p_end, H5G_entry_t *ent, unsigned n); @@ -465,7 +465,7 @@ H5_DLL herr_t H5G__name_init(H5G_name_t *name, const char *path); /* * These functions operate on group "locations" */ -H5_DLL herr_t H5G__loc_insert(H5G_loc_t *grp_loc, const char *name, H5G_loc_t *obj_loc, H5O_type_t obj_type, +H5_DLL herr_t H5G__loc_insert(H5G_loc_t *grp_loc, char *name, H5G_loc_t *obj_loc, H5O_type_t obj_type, const void *crt_info); H5_DLL herr_t H5G__loc_addr(const H5G_loc_t *loc, const char *name, haddr_t *addr /*out*/); |