diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-15 03:47:39 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-15 03:47:39 (GMT) |
commit | eb784ecd693a54c2153d8b9eb6ddbec88613b802 (patch) | |
tree | 6b86712d87770c35a85618917c0ffac9c0e73d7e /src/H5Sselect.c | |
parent | 5b6f42727c81c0ec8f70cf8277fd01fb8fabe549 (diff) | |
download | hdf5-eb784ecd693a54c2153d8b9eb6ddbec88613b802.zip hdf5-eb784ecd693a54c2153d8b9eb6ddbec88613b802.tar.gz hdf5-eb784ecd693a54c2153d8b9eb6ddbec88613b802.tar.bz2 |
[svn-r495] Finished debugging element selections. H5Sselect_elements call now working
correctly (as opposed to not at all... :-)
Diffstat (limited to 'src/H5Sselect.c')
-rw-r--r-- | src/H5Sselect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Sselect.c b/src/H5Sselect.c index 83e6b38..28197a8 100644 --- a/src/H5Sselect.c +++ b/src/H5Sselect.c @@ -319,7 +319,7 @@ done: hid_t dsid; IN: Dataspace ID of selection to modify H5S_seloper_t op; IN: Operation to perform on current selection size_t num_elem; IN: Number of elements in COORD array. - const hssize_t *coord[]; IN: The location of each element selected + const hssize_t **coord; IN: The location of each element selected RETURNS SUCCEED/FAIL DESCRIPTION @@ -340,7 +340,7 @@ done: REVISION LOG --------------------------------------------------------------------------*/ herr_t H5Sselect_elements (hid_t spaceid, H5S_seloper_t op, size_t num_elem, - const hssize_t *coord[]) + const hssize_t **coord) { H5S_t *space = NULL; /* Dataspace to modify selection of */ herr_t ret_value=FAIL; /* return value */ |