diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-14 19:32:01 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-14 19:32:01 (GMT) |
commit | 37a57858d5cf90799a637b80c5bf5d63dcc40fc7 (patch) | |
tree | 2b050d1679475077d814439aa7e5e25fe547e68c /src/H5Gprivate.h | |
parent | efc45d5aab2fbdbad1f7bf494db91f9257a3285e (diff) | |
download | hdf5-37a57858d5cf90799a637b80c5bf5d63dcc40fc7.zip hdf5-37a57858d5cf90799a637b80c5bf5d63dcc40fc7.tar.gz hdf5-37a57858d5cf90799a637b80c5bf5d63dcc40fc7.tar.bz2 |
[svn-r13304] Description:
Fix new API routines to use same pattern of arguments for specifying an
object as the new H5G/L/O API routines.
Tested on:
Linux/32 2.6 (chicago)
Diffstat (limited to 'src/H5Gprivate.h')
-rw-r--r-- | src/H5Gprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gprivate.h b/src/H5Gprivate.h index 5d8a110..a432c4e 100644 --- a/src/H5Gprivate.h +++ b/src/H5Gprivate.h @@ -192,7 +192,7 @@ H5_DLL ssize_t H5G_get_refobj_name(hid_t fid, hid_t dxpl_id, * These functions operate on group "locations" */ H5_DLL herr_t H5G_loc(hid_t loc_id, H5G_loc_t *loc); -H5_DLL herr_t H5G_loc_find(H5G_loc_t *loc, const char *name, +H5_DLL herr_t H5G_loc_find(const H5G_loc_t *loc, const char *name, H5G_loc_t *obj_loc/*out*/, hid_t lapl_id, hid_t dxpl_id); H5_DLL herr_t H5G_loc_find_by_idx(H5G_loc_t *loc, const char *group_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, |