diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2011-10-20 22:01:21 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2011-10-20 22:01:21 (GMT) |
commit | 72702153d2e3fe35aa526173f93f5510eb4b65fd (patch) | |
tree | 70a4a866edab23ef0c5ec1c6adc57922653e0219 /src/H5Gpkg.h | |
parent | cc6ce34d23ab42bcc0df38beb94ad5683f604aaa (diff) | |
download | hdf5-72702153d2e3fe35aa526173f93f5510eb4b65fd.zip hdf5-72702153d2e3fe35aa526173f93f5510eb4b65fd.tar.gz hdf5-72702153d2e3fe35aa526173f93f5510eb4b65fd.tar.bz2 |
[svn-r21629] Purpose: Update fix committed in r21556
Description:
An old patch was mistakenly committed in r21556. Replaced this fix with the
latest.
Tested: jam, koala, heiwa (h5committest)
Diffstat (limited to 'src/H5Gpkg.h')
-rw-r--r-- | src/H5Gpkg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h index c966e16..b8f5f42 100644 --- a/src/H5Gpkg.h +++ b/src/H5Gpkg.h @@ -252,7 +252,7 @@ typedef struct H5G_bt_it_cpy_t { const H5O_loc_t *src_oloc; /* Source object location */ haddr_t src_heap_addr; /* Heap address of the source symbol table */ H5F_t *dst_file; /* File of destination group */ - H5O_stab_t *dst_stab; /* Symbol table message for destination group */ + const H5O_stab_t *dst_stab; /* Symbol table message for destination group */ H5O_copy_t *cpy_info; /* Information for copy operation */ } H5G_bt_it_cpy_t; @@ -416,9 +416,9 @@ H5_DLL herr_t H5G_stab_create_components(H5F_t *f, H5O_stab_t *stab, size_t size H5_DLL herr_t H5G_stab_insert(const H5O_loc_t *grp_oloc, const char *name, H5O_link_t *obj_lnk, H5O_type_t obj_type, const void *crt_info, hid_t dxpl_id); -H5_DLL herr_t H5G_stab_insert_real(H5F_t *f, H5O_stab_t *stab, const char *name, - H5O_link_t *obj_lnk, H5O_type_t obj_type, const void *crt_info, - hid_t dxpl_id); +H5_DLL herr_t H5G_stab_insert_real(H5F_t *f, const H5O_stab_t *stab, + const char *name, H5O_link_t *obj_lnk, H5O_type_t obj_type, + const void *crt_info, hid_t dxpl_id); H5_DLL herr_t H5G_stab_delete(H5F_t *f, hid_t dxpl_id, const H5O_stab_t *stab); H5_DLL herr_t H5G_stab_iterate(const H5O_loc_t *oloc, hid_t dxpl_id, H5_iter_order_t order, hsize_t skip, hsize_t *last_lnk, H5G_lib_iterate_t op, void *op_data); |