diff options
author | Nat Furrer <nfurrer@ncsa.uiuc.edu> | 2004-06-30 15:53:50 (GMT) |
---|---|---|
committer | Nat Furrer <nfurrer@ncsa.uiuc.edu> | 2004-06-30 15:53:50 (GMT) |
commit | 5b91547da568157e340814f0a13add577276b4c1 (patch) | |
tree | 2a5514342136730ea2cbbcc79226a14b7f564525 /src/H5Ipublic.h | |
parent | 8e468d9dec965e575dd442d63af9e412fcb758e6 (diff) | |
download | hdf5-5b91547da568157e340814f0a13add577276b4c1.zip hdf5-5b91547da568157e340814f0a13add577276b4c1.tar.gz hdf5-5b91547da568157e340814f0a13add577276b4c1.tar.bz2 |
[svn-r8767]
Purpose:
Forgot to change H5Inmembers's return type in last commit...
Description:
Changed the number H5Inmembers returns by reference from int to hsize_t.
Solution:
Platforms tested:
Misc. update:
Diffstat (limited to 'src/H5Ipublic.h')
-rw-r--r-- | src/H5Ipublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ipublic.h b/src/H5Ipublic.h index 67357bb..c3015e1 100644 --- a/src/H5Ipublic.h +++ b/src/H5Ipublic.h @@ -93,7 +93,7 @@ H5_DLL int H5Iinc_type_ref(H5I_type_t type); H5_DLL int H5Idec_type_ref(H5I_type_t type); H5_DLL int H5Iget_type_ref(H5I_type_t type); H5_DLL void *H5Isearch(H5I_type_t type, H5I_search_func_t func, void *key); -H5_DLL herr_t H5Inmembers(H5I_type_t type, int *num_members); +H5_DLL herr_t H5Inmembers(H5I_type_t type, hsize_t *num_members); H5_DLL htri_t H5Itype_exists(H5I_type_t type); |