summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2020-12-24 15:12:01 (GMT)
committerGitHub <noreply@github.com>2020-12-24 15:12:01 (GMT)
commita6386824c75e804ae5f1782fbbeab79152389d2a (patch)
treedb1a0cc23d176411bdff7c24528c9a093f1899a5 /src
parent5c9d08a964b80e25608a60e2425d9c838cf8055e (diff)
downloadhdf5-a6386824c75e804ae5f1782fbbeab79152389d2a.zip
hdf5-a6386824c75e804ae5f1782fbbeab79152389d2a.tar.gz
hdf5-a6386824c75e804ae5f1782fbbeab79152389d2a.tar.bz2
Switch bool/true/false to hbool_t/TRUE/FALSE in a few places (#229)
Diffstat (limited to 'src')
-rw-r--r--src/H5Z.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Z.c b/src/H5Z.c
index bd12d0e..b6f617d 100644
--- a/src/H5Z.c
+++ b/src/H5Z.c
@@ -1014,7 +1014,7 @@ H5Z_ignore_filters(hid_t dcpl_id, const H5T_t *type, const H5S_t *space)
H5O_pline_t pline; /* Object's I/O pipeline information */
H5S_class_t space_class; /* To check class of space */
H5T_class_t type_class; /* To check if type is VL */
- bool bad_for_filters = FALSE; /* Suitable to have filters */
+ hbool_t bad_for_filters = FALSE; /* Suitable to have filters */
htri_t ret_value = FALSE; /* TRUE for ignoring filters */
FUNC_ENTER_NOAPI(FAIL)