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/H5Ftest.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/H5Ftest.c')
-rw-r--r-- | src/H5Ftest.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/H5Ftest.c b/src/H5Ftest.c index 3e33b84..b885205 100644 --- a/src/H5Ftest.c +++ b/src/H5Ftest.c @@ -45,7 +45,7 @@ #include "H5Gpkg.h" /* Groups */ #include "H5Iprivate.h" /* IDs */ #include "H5SMpkg.h" /* Shared object header messages */ - +#include "H5VLprivate.h" /* Virtual Object Layer */ /****************/ /* Local Macros */ @@ -100,14 +100,14 @@ H5F_get_sohm_mesg_count_test(hid_t uid, unsigned type_id, size_t *mesg_count) { H5F_t *file; /* File info */ - H5I_t *uid_info; + H5VL_id_wrapper_t *uid_info; hid_t file_id; herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI_NOINIT if (H5I_FILE_PUBLIC == H5I_get_type(uid)) { - 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") file_id = uid_info->obj_id; } @@ -148,14 +148,14 @@ herr_t H5F_check_cached_stab_test(hid_t uid) { H5F_t *file; /* File info */ - H5I_t *uid_info; + H5VL_id_wrapper_t *uid_info; hid_t file_id; herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI_NOINIT if (H5I_FILE_PUBLIC == H5I_get_type(uid)) { - 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") file_id = uid_info->obj_id; } @@ -193,14 +193,14 @@ herr_t H5F_get_maxaddr_test(hid_t uid, haddr_t *maxaddr) { H5F_t *file; /* File info */ - H5I_t *uid_info; + H5VL_id_wrapper_t *uid_info; hid_t file_id; herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI_NOINIT if (H5I_FILE_PUBLIC == H5I_get_type(uid)) { - 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") file_id = uid_info->obj_id; } |