diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-03-26 21:59:50 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-03-26 21:59:50 (GMT) |
commit | 31623a4916da61e72417ccacf7d8cea6466a769e (patch) | |
tree | 5e5c8a1124926b87a08cc658b2185882c3d15618 /src/H5L.c | |
parent | 04b257f380589c9136005695921bafdb5aa940fc (diff) | |
download | hdf5-31623a4916da61e72417ccacf7d8cea6466a769e.zip hdf5-31623a4916da61e72417ccacf7d8cea6466a769e.tar.gz hdf5-31623a4916da61e72417ccacf7d8cea6466a769e.tar.bz2 |
[svn-r22153] renaming some VL public variables and wrapper ID type
Diffstat (limited to 'src/H5L.c')
-rw-r--r-- | src/H5L.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -36,6 +36,7 @@ #include "H5MMprivate.h" /* Memory management */ #include "H5Oprivate.h" /* File objects */ #include "H5Pprivate.h" /* Property lists */ +#include "H5VLprivate.h" /* Virtual Object Layer */ /****************/ /* Local Macros */ @@ -1154,7 +1155,7 @@ H5Literate(hid_t id, H5_index_t idx_type, H5_iter_order_t order, H5G_link_iterate_t lnk_op; /* Link operator */ hsize_t last_lnk; /* Index of last object looked at */ hsize_t idx; /* Internal location to hold index */ - H5I_t *uid_info; /* user id structure */ + H5VL_id_wrapper_t *uid_info; /* user id structure */ hid_t grp_id; herr_t ret_value; /* Return value */ @@ -1168,7 +1169,7 @@ H5Literate(hid_t id, H5_index_t idx_type, H5_iter_order_t order, at some point needs to be removed once all high level operations that needs to go through the VOL actually go through the VOL*/ if (H5I_FILE_PUBLIC == id_type || H5I_GROUP_PUBLIC == id_type) { - if(NULL == (uid_info = (H5I_t *)H5I_object(id))) + if(NULL == (uid_info = (H5VL_id_wrapper_t *)H5I_object(id))) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "invalid user identifier") grp_id = uid_info->obj_id; id_type = H5I_get_type(grp_id); @@ -1312,7 +1313,7 @@ H5Lvisit(hid_t uid, H5_index_t idx_type, H5_iter_order_t order, H5L_iterate_t op, void *op_data) { H5I_type_t id_type; /* Type of ID */ - H5I_t *uid_info; /* user id structure */ + H5VL_id_wrapper_t *uid_info; /* user id structure */ hid_t grp_id; herr_t ret_value; /* Return value */ @@ -1322,7 +1323,7 @@ H5Lvisit(hid_t uid, H5_index_t idx_type, H5_iter_order_t order, id_type = H5I_get_type(uid); if (H5I_FILE_PUBLIC == id_type) { - if(NULL == (uid_info = (H5I_t *)H5I_object(uid))) + if(NULL == (uid_info = (H5VL_id_wrapper_t *)H5I_object(uid))) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "invalid user identifier") grp_id = uid_info->obj_id; id_type = H5I_get_type(grp_id); |