diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-08 18:50:21 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-08 18:50:21 (GMT) |
commit | 494f46639dfdd646cb54235ef9d8a3b0cf75523c (patch) | |
tree | 0a76ca21742e73ab36f76634a3872f3c9feee303 /src/H5Oattribute.c | |
parent | 1e5e6baad117093c66c922f157dade58b2716f89 (diff) | |
download | hdf5-494f46639dfdd646cb54235ef9d8a3b0cf75523c.zip hdf5-494f46639dfdd646cb54235ef9d8a3b0cf75523c.tar.gz hdf5-494f46639dfdd646cb54235ef9d8a3b0cf75523c.tar.bz2 |
[svn-r13272] Description:
Checkpoint attribute creation order coding on "by index" routines.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Oattribute.c')
-rw-r--r-- | src/H5Oattribute.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Oattribute.c b/src/H5Oattribute.c index 5a1a2b1..781572b 100644 --- a/src/H5Oattribute.c +++ b/src/H5Oattribute.c @@ -475,7 +475,8 @@ done: *------------------------------------------------------------------------- */ H5A_t * -H5O_attr_open_by_idx(const H5O_loc_t *loc, hsize_t n, hid_t dxpl_id) +H5O_attr_open_by_idx(const H5O_loc_t *loc, H5_index_t idx_type, + H5_iter_order_t order, hsize_t n, hid_t dxpl_id) { H5A_attr_iter_op_t attr_op; /* Attribute operator */ H5A_t *ret_value = NULL; /* Return value */ |