diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-06 21:37:57 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-06 21:37:57 (GMT) |
commit | 2c4af336d30a42c3d12664ad0f08fbd96471c80f (patch) | |
tree | 560cd4eec035b47c1d2eb1c8236ef1cf189619c3 /src/H5G.c | |
parent | deeb5978c0377face944162fada47516e0ed063c (diff) | |
download | hdf5-2c4af336d30a42c3d12664ad0f08fbd96471c80f.zip hdf5-2c4af336d30a42c3d12664ad0f08fbd96471c80f.tar.gz hdf5-2c4af336d30a42c3d12664ad0f08fbd96471c80f.tar.bz2 |
[svn-r739] Switched ragged array "H5R" API to "H5RA" to make room for the reference API.
Diffstat (limited to 'src/H5G.c')
-rw-r--r-- | src/H5G.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -84,7 +84,7 @@ #include <H5Iprivate.h> #include <H5MMprivate.h> #include <H5Oprivate.h> -#include <H5Rprivate.h> +#include <H5RAprivate.h> #define H5G_INIT_HEAP 8192 #define H5G_RESERVED_ATOMS 0 @@ -1863,7 +1863,7 @@ H5G_loc (hid_t loc_id) H5T_t *dt=NULL; H5D_t *dset=NULL; H5A_t *attr=NULL; - H5R_t *ra=NULL; + H5RA_t *ra=NULL; FUNC_ENTER (H5G_loc, NULL); @@ -1951,7 +1951,7 @@ H5G_loc (hid_t loc_id) HRETURN_ERROR(H5E_ARGS, H5E_BADVALUE, NULL, "invalid ragged array ID"); } - if (NULL==(ret_value=H5R_entof(ra))) { + if (NULL==(ret_value=H5RA_entof(ra))) { HRETURN_ERROR(H5E_ARGS, H5E_BADVALUE, NULL, "unable to get symbol table entry of ragged array"); } |