diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-11-03 22:27:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-11-03 22:27:54 (GMT) |
commit | 0001a136175eb59c3c2ff778c67e763bae73f473 (patch) | |
tree | 7ec60d039e634e43192f5e327b0c327b94e232d9 /src/H5FDfamily.c | |
parent | 3af26fa7a598221427d43fa8a1620cf18fbeb2dc (diff) | |
download | hdf5-0001a136175eb59c3c2ff778c67e763bae73f473.zip hdf5-0001a136175eb59c3c2ff778c67e763bae73f473.tar.gz hdf5-0001a136175eb59c3c2ff778c67e763bae73f473.tar.bz2 |
[svn-r4589] Purpose:
Code cleanup
Description:
Clean up various compiler warnings from generic property updates.
Platforms tested:
FreeBSD 4.4 (hawkwind)
Diffstat (limited to 'src/H5FDfamily.c')
-rw-r--r-- | src/H5FDfamily.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/H5FDfamily.c b/src/H5FDfamily.c index 5162163..9a3160e 100644 --- a/src/H5FDfamily.c +++ b/src/H5FDfamily.c @@ -25,8 +25,9 @@ #include "H5Eprivate.h" /*error handling */ #include "H5Fprivate.h" /*files */ #include "H5FDprivate.h" /*file driver */ -#include "H5FDfamily.h" /* Family file driver */ -#include "H5MMprivate.h" /* Memory allocation */ +#include "H5FDfamily.h" /* Family file driver */ +#include "H5Iprivate.h" /*object IDs */ +#include "H5MMprivate.h" /* Memory allocation */ #include "H5Pprivate.h" /*property lists */ @@ -181,7 +182,7 @@ H5Pset_fapl_family(hid_t fapl_id, hsize_t memb_size, hid_t memb_fapl_id) H5TRACE3("e","ihi",fapl_id,memb_size,memb_fapl_id); /* Check arguments */ - if(H5I_GENPROP_LST != H5I_get_type(fapl_id) || + if(H5I_GENPROP_LST != H5Iget_type(fapl_id) || TRUE != H5Pisa_class(fapl_id, H5P_FILE_ACCESS)) HRETURN_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list"); @@ -233,7 +234,7 @@ H5Pget_fapl_family(hid_t fapl_id, hsize_t *memb_size/*out*/, FUNC_ENTER(H5Pget_fapl_family, FAIL); H5TRACE3("e","ixx",fapl_id,memb_size,memb_fapl_id); - if(H5I_GENPROP_LST != H5I_get_type(fapl_id) || + if(H5I_GENPROP_LST != H5Iget_type(fapl_id) || TRUE != H5Pisa_class(fapl_id, H5P_FILE_ACCESS)) HRETURN_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access list"); if (H5FD_FAMILY!=H5P_get_driver(fapl_id)) |