diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 22:44:13 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 22:44:13 (GMT) |
commit | 7dcbae97f23f8409ed8d60640b3b2a8aaed70978 (patch) | |
tree | 54ba54ec5cdcda9651d63a4471a9a9ec2204e767 /src/H5Fsplit.c | |
parent | a7b166727dce2c23c2a0c7805c3e3b8d38e4be2d (diff) | |
download | hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.zip hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.tar.gz hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.tar.bz2 |
[svn-r800] Made a "htri_t" as a return value from "boolean" functions returning
TRUE/FALSE/FAIL, hbool_t is now strictly for true boolean values.
Diffstat (limited to 'src/H5Fsplit.c')
-rw-r--r-- | src/H5Fsplit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Fsplit.c b/src/H5Fsplit.c index b3fcc10..e63ed72 100644 --- a/src/H5Fsplit.c +++ b/src/H5Fsplit.c @@ -25,7 +25,7 @@ static hbool_t interface_initialize_g = FALSE; #define INTERFACE_INIT NULL -static hbool_t H5F_split_access(const char *name, +static htri_t H5F_split_access(const char *name, const H5F_access_t *access_parms, int mode, H5F_search_t *key/*out*/); static H5F_low_t *H5F_split_open(const char *name, @@ -342,12 +342,12 @@ H5F_split_flush(H5F_low_t *lf, const H5F_access_t *access_parms) * *------------------------------------------------------------------------- */ -static hbool_t +static htri_t H5F_split_access(const char *name, const H5F_access_t *access_parms, int mode, H5F_search_t *key/*out*/) { char fullname[4096]; - hbool_t status; + htri_t status; const char *ext; /*file extension*/ const H5F_low_class_t *meta_type = NULL; const H5F_low_class_t *raw_type = NULL; |