diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-01-15 21:29:27 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-01-15 21:29:27 (GMT) |
commit | 1d038e08c18dd40e5157d8d91c56437abbf45413 (patch) | |
tree | e6159fcd68f66b00b24ba9d87eb7e74983a0f433 /src/H5Spoint.c | |
parent | e622f3351553cb867566a59b5c8e0d5cf0a74c5a (diff) | |
download | hdf5-1d038e08c18dd40e5157d8d91c56437abbf45413.zip hdf5-1d038e08c18dd40e5157d8d91c56437abbf45413.tar.gz hdf5-1d038e08c18dd40e5157d8d91c56437abbf45413.tar.bz2 |
[svn-r14421] Description:
Minor cleanups and clarifications to prototype information.
Tested on:
Mac OS X/32 10.5.1 (amazon)
Diffstat (limited to 'src/H5Spoint.c')
-rw-r--r-- | src/H5Spoint.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Spoint.c b/src/H5Spoint.c index 6a3c122..9690eb4 100644 --- a/src/H5Spoint.c +++ b/src/H5Spoint.c @@ -964,7 +964,7 @@ H5S_get_select_elem_pointlist(H5S_t *space, hsize_t startpoint, hsize_t numpoint hid_t dsid; IN: Dataspace ID of selection to query hsize_t startpoint; IN: Element point to start with hsize_t numpoints; IN: Number of element points to get - hsize_t *buf; OUT: List of element points selected + hsize_t buf[]; OUT: List of element points selected RETURNS Non-negative on success, negative on failure DESCRIPTION @@ -984,7 +984,8 @@ H5S_get_select_elem_pointlist(H5S_t *space, hsize_t startpoint, hsize_t numpoint REVISION LOG --------------------------------------------------------------------------*/ herr_t -H5Sget_select_elem_pointlist(hid_t spaceid, hsize_t startpoint, hsize_t numpoints, hsize_t *buf) +H5Sget_select_elem_pointlist(hid_t spaceid, hsize_t startpoint, + hsize_t numpoints, hsize_t buf[/*numpoints*/]) { H5S_t *space = NULL; /* Dataspace to modify selection of */ herr_t ret_value; /* return value */ |