diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-20 19:58:09 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-20 19:58:09 (GMT) |
commit | d08fabd66d4625bf387bb2edc9c19432332aed16 (patch) | |
tree | 421b336267de887763aa82c820a6fe05c3d9611b /src/H5Tcommit.c | |
parent | 8eecc944d7f741afcfd445a6c0f9906df759cdad (diff) | |
download | hdf5-d08fabd66d4625bf387bb2edc9c19432332aed16.zip hdf5-d08fabd66d4625bf387bb2edc9c19432332aed16.tar.gz hdf5-d08fabd66d4625bf387bb2edc9c19432332aed16.tar.bz2 |
[svn-r13353] Description:
Checkpoint progress on H5Aiterate2().
Mark H5Aiterate() as deprecated.
Various code cleanups.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Tcommit.c')
-rw-r--r-- | src/H5Tcommit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Tcommit.c b/src/H5Tcommit.c index fe1d9f3..dd92fd3 100644 --- a/src/H5Tcommit.c +++ b/src/H5Tcommit.c @@ -37,7 +37,7 @@ /* Static local functions */ static herr_t H5T_commit(H5F_t *file, H5T_t *type, hid_t dxpl_id, hid_t tcpl_id, hid_t tapl_id); -static H5T_t *H5T_open_oid(H5G_loc_t *loc, hid_t dxpl_id); +static H5T_t *H5T_open_oid(const H5G_loc_t *loc, hid_t dxpl_id); /*-------------------------------------------------------------------------- @@ -667,7 +667,7 @@ done: *------------------------------------------------------------------------- */ H5T_t * -H5T_open(H5G_loc_t *loc, hid_t dxpl_id) +H5T_open(const H5G_loc_t *loc, hid_t dxpl_id) { H5T_shared_t *shared_fo = NULL; H5T_t *dt = NULL; @@ -776,7 +776,7 @@ done: *------------------------------------------------------------------------- */ static H5T_t * -H5T_open_oid(H5G_loc_t *loc, hid_t dxpl_id) +H5T_open_oid(const H5G_loc_t *loc, hid_t dxpl_id) { H5T_t *dt = NULL; H5T_t *ret_value; |