summaryrefslogtreecommitdiffstats
path: root/src/H5Fint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r--src/H5Fint.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c
index 4118beb..3d46147 100644
--- a/src/H5Fint.c
+++ b/src/H5Fint.c
@@ -329,7 +329,7 @@ static herr_t
H5F__set_vol_conn(H5F_t *file)
{
H5VL_connector_prop_t connector_prop; /* Property for VOL connector ID & info */
- const H5VL_class_t *vol_cls; /* Pointer to VOL connector class for the container */
+ const H5VL_class_t * vol_cls; /* Pointer to VOL connector class for the container */
void * new_connector_info = NULL; /* Copy of connector info */
herr_t ret_value = SUCCEED; /* Return value */
@@ -1653,15 +1653,15 @@ H5F__dest(H5F_t *f, hbool_t flush)
f->open_name = (char *)H5MM_xfree(f->open_name);
f->actual_name = (char *)H5MM_xfree(f->actual_name);
if (f->vol_obj) {
-// void *vol_wrap_ctx = NULL;
+ // void *vol_wrap_ctx = NULL;
/* If a VOL wrapping context is available, retrieve it
* and unwrap file VOL object
*/
-// if (H5CX_get_vol_wrap_ctx((void **)&vol_wrap_ctx) < 0)
-// HDONE_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "can't get VOL object wrap context")
-// if (vol_wrap_ctx && (NULL == H5VL_object_unwrap(f->vol_obj)))
-// HDONE_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "can't unwrap VOL object")
+ // if (H5CX_get_vol_wrap_ctx((void **)&vol_wrap_ctx) < 0)
+ // HDONE_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "can't get VOL object wrap context")
+ // if (vol_wrap_ctx && (NULL == H5VL_object_unwrap(f->vol_obj)))
+ // HDONE_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "can't unwrap VOL object")
if (H5VL_free_object(f->vol_obj) < 0)
HDONE_ERROR(H5E_FILE, H5E_CANTDEC, FAIL, "unable to free VOL object")