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/H5Sselect.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/H5Sselect.c')
-rw-r--r-- | src/H5Sselect.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Sselect.c b/src/H5Sselect.c index fa413a5..ed3c740 100644 --- a/src/H5Sselect.c +++ b/src/H5Sselect.c @@ -491,8 +491,8 @@ done: USAGE herr_t H5S_get_select_bounds(space, start, end) hid_t dsid; IN: Dataspace ID of selection to query - hsize_t *start; OUT: Starting coordinate of bounding box - hsize_t *end; OUT: Opposite coordinate of bounding box + hsize_t start[]; OUT: Starting coordinate of bounding box + hsize_t end[]; OUT: Opposite coordinate of bounding box RETURNS Non-negative on success, negative on failure DESCRIPTION @@ -514,7 +514,7 @@ done: REVISION LOG --------------------------------------------------------------------------*/ herr_t -H5Sget_select_bounds(hid_t spaceid, hsize_t *start, hsize_t *end) +H5Sget_select_bounds(hid_t spaceid, hsize_t start[], hsize_t end[]) { H5S_t *space = NULL; /* Dataspace to modify selection of */ herr_t ret_value; /* return value */ |