summaryrefslogtreecommitdiffstats
path: root/src/H5Itest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Itest.c')
-rw-r--r--src/H5Itest.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Itest.c b/src/H5Itest.c
index 68204a8..a6d2c1e 100644
--- a/src/H5Itest.c
+++ b/src/H5Itest.c
@@ -61,12 +61,12 @@
*-------------------------------------------------------------------------
*/
ssize_t
-H5I__get_name_test(hid_t id, char *name /*out*/, size_t size, hbool_t *cached)
+H5I__get_name_test(hid_t id, char *name /*out*/, size_t size, bool *cached)
{
H5VL_object_t *vol_obj; /* Object of id */
H5G_loc_t loc; /* Object location */
- hbool_t api_ctx_pushed = FALSE; /* Whether API context pushed */
- hbool_t vol_wrapper_set = FALSE; /* Whether the VOL object wrapping context was set up */
+ bool api_ctx_pushed = false; /* Whether API context pushed */
+ bool vol_wrapper_set = false; /* Whether the VOL object wrapping context was set up */
size_t name_len = 0; /* Length of name */
ssize_t ret_value = -1; /* Return value */
@@ -75,7 +75,7 @@ H5I__get_name_test(hid_t id, char *name /*out*/, size_t size, hbool_t *cached)
/* Set API context */
if (H5CX_push() < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTSET, (-1), "can't set API context");
- api_ctx_pushed = TRUE;
+ api_ctx_pushed = true;
/* Get the object pointer */
if (NULL == (vol_obj = H5VL_vol_object(id)))
@@ -84,7 +84,7 @@ H5I__get_name_test(hid_t id, char *name /*out*/, size_t size, hbool_t *cached)
/* Set wrapper info in API context */
if (H5VL_set_vol_wrapper(vol_obj) < 0)
HGOTO_ERROR(H5E_ID, H5E_CANTSET, (-1), "can't set VOL wrapper info");
- vol_wrapper_set = TRUE;
+ vol_wrapper_set = true;
/* Get object location */
if (H5G_loc(id, &loc) < 0)
@@ -102,7 +102,7 @@ done:
if (vol_wrapper_set && H5VL_reset_vol_wrapper() < 0)
HDONE_ERROR(H5E_ID, H5E_CANTRESET, (-1), "can't reset VOL wrapper info");
- if (api_ctx_pushed && H5CX_pop(FALSE) < 0)
+ if (api_ctx_pushed && H5CX_pop(false) < 0)
HDONE_ERROR(H5E_SYM, H5E_CANTRESET, (-1), "can't reset API context");
FUNC_LEAVE_NOAPI(ret_value)