summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2018-04-06 22:19:29 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2018-04-06 22:19:29 (GMT)
commit62b4200f580e9ea0b95cbc218bfae50ae38ef25d (patch)
tree28b6b57af73f4023ed15547d54cd86e77a4e8b0d /src
parent051c5fa9b3541dce7c8d90e7fbab95c9e51bc709 (diff)
downloadhdf5-62b4200f580e9ea0b95cbc218bfae50ae38ef25d.zip
hdf5-62b4200f580e9ea0b95cbc218bfae50ae38ef25d.tar.gz
hdf5-62b4200f580e9ea0b95cbc218bfae50ae38ef25d.tar.bz2
Remove vestiges of H5_DEBUG_BUILD macro, switching it to the more
standard H5CX_DEBUG form.
Diffstat (limited to 'src')
-rw-r--r--src/H5CX.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5CX.c b/src/H5CX.c
index 9427e05..af2619b 100644
--- a/src/H5CX.c
+++ b/src/H5CX.c
@@ -826,11 +826,11 @@ H5CX_set_apl(hid_t *acspl_id, const H5P_libclass_t *libclass,
else {
htri_t is_lapl; /* Whether the access property list is (or is derived from) a link access property list */
-#ifdef H5_DEBUG_BUILD
+#ifdef H5CX_DEBUG
/* Sanity check the access property list class */
if(TRUE != H5P_isa_class(*acspl_id, *libclass->class_id))
HGOTO_ERROR(H5E_CONTEXT, H5E_BADTYPE, FAIL, "not the required access property list")
-#endif /* H5_DEBUG_BUILD */
+#endif /* H5CX_DEBUG*/
/* Check for link access property and set API context if so */
if((is_lapl = H5P_class_isa(*libclass->pclass, *H5P_CLS_LACC->pclass)) < 0)