diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-01-15 21:10:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-01-15 21:10:42 (GMT) |
commit | e622f3351553cb867566a59b5c8e0d5cf0a74c5a (patch) | |
tree | 639deb8e2e350a16b0712f544e26f64bd91827d4 /src/H5Sprivate.h | |
parent | e4b251d90df06d1dcd1a1cdda5ff47c3535a98a1 (diff) | |
download | hdf5-e622f3351553cb867566a59b5c8e0d5cf0a74c5a.zip hdf5-e622f3351553cb867566a59b5c8e0d5cf0a74c5a.tar.gz hdf5-e622f3351553cb867566a59b5c8e0d5cf0a74c5a.tar.bz2 |
[svn-r14420] Description:
Correct the prototype for H5Sselect_elements() to take an 'hsize_t *' for
the coordinates, instead of 'hsize_t **'.
Tested on:
Mac OS X/32 10.5.1 (amazon)
Diffstat (limited to 'src/H5Sprivate.h')
-rw-r--r-- | src/H5Sprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h index aa8a418..bd27f09 100644 --- a/src/H5Sprivate.h +++ b/src/H5Sprivate.h @@ -258,8 +258,8 @@ H5_DLL herr_t H5S_select_all(H5S_t *space, hbool_t rel_prev); H5_DLL herr_t H5S_select_none(H5S_t *space); /* Operations on point selections */ -H5_DLL herr_t H5S_select_elements (H5S_t *space, H5S_seloper_t op, - size_t num_elem, const hsize_t **coord); +H5_DLL herr_t H5S_select_elements(H5S_t *space, H5S_seloper_t op, + size_t num_elem, const hsize_t *coord); /* Operations on hyperslab selections */ H5_DLL herr_t H5S_select_hyperslab (H5S_t *space, H5S_seloper_t op, const hsize_t start[], |