summaryrefslogtreecommitdiffstats
path: root/src/H5Shyper.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Shyper.c')
-rw-r--r--src/H5Shyper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Shyper.c b/src/H5Shyper.c
index b5e383c..768201e 100644
--- a/src/H5Shyper.c
+++ b/src/H5Shyper.c
@@ -2585,7 +2585,7 @@ done:
Check whether the selection fits within the extent, with the current
offset defined.
USAGE
- hbool_t H5S_hyper_select_valid(space);
+ htri_t H5S_hyper_select_valid(space);
H5S_t *space; IN: Dataspace pointer to query
RETURNS
TRUE if the selection fits within the extent, FALSE if it does not and
@@ -2598,12 +2598,12 @@ done:
EXAMPLES
REVISION LOG
--------------------------------------------------------------------------*/
-hbool_t
+htri_t
H5S_hyper_select_valid (const H5S_t *space)
{
H5S_hyper_node_t *curr; /* Hyperslab information nodes */
intn i; /* Counter */
- hbool_t ret_value=TRUE; /* return value */
+ htri_t ret_value=TRUE; /* return value */
FUNC_ENTER (H5S_hyper_select_valid, FAIL);