summaryrefslogtreecommitdiffstats
path: root/src/H5Atest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Atest.c')
-rw-r--r--src/H5Atest.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Atest.c b/src/H5Atest.c
index f66377d..1d18b44 100644
--- a/src/H5Atest.c
+++ b/src/H5Atest.c
@@ -71,7 +71,7 @@
*
* Purpose: Check if an attribute is shared
*
- * Return: TRUE/FALSE/FAIL
+ * Return: true/false/FAIL
*
*-------------------------------------------------------------------------
*/
@@ -106,9 +106,9 @@ done:
herr_t
H5A__get_shared_rc_test(hid_t attr_id, hsize_t *ref_count)
{
- H5A_t *attr; /* Attribute object for ID */
- hbool_t api_ctx_pushed = FALSE; /* Whether API context pushed */
- herr_t ret_value = SUCCEED; /* Return value */
+ H5A_t *attr; /* Attribute object for ID */
+ bool api_ctx_pushed = false; /* Whether API context pushed */
+ herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_PACKAGE
@@ -119,7 +119,7 @@ H5A__get_shared_rc_test(hid_t attr_id, hsize_t *ref_count)
/* Push API context */
if (H5CX_push() < 0)
HGOTO_ERROR(H5E_ATTR, H5E_CANTSET, FAIL, "can't set API context");
- api_ctx_pushed = TRUE;
+ api_ctx_pushed = true;
/* Sanity check */
assert(H5O_msg_is_shared(H5O_ATTR_ID, attr));
@@ -129,7 +129,7 @@ H5A__get_shared_rc_test(hid_t attr_id, hsize_t *ref_count)
HGOTO_ERROR(H5E_ATTR, H5E_CANTGET, FAIL, "can't retrieve shared message ref count");
done:
- if (api_ctx_pushed && H5CX_pop(FALSE) < 0)
+ if (api_ctx_pushed && H5CX_pop(false) < 0)
HDONE_ERROR(H5E_ATTR, H5E_CANTRESET, FAIL, "can't reset API context");
FUNC_LEAVE_NOAPI(ret_value)