summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2008-01-15 22:25:42 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2008-01-15 22:25:42 (GMT)
commitf7520c906258636b4b8b24d3b0cd175f653c74ad (patch)
tree5ae2d014cd394715eea60403d91619774abe531c /testpar
parente5dac2010c173cab81b70b2ba0e9ba03d2b94b91 (diff)
downloadhdf5-f7520c906258636b4b8b24d3b0cd175f653c74ad.zip
hdf5-f7520c906258636b4b8b24d3b0cd175f653c74ad.tar.gz
hdf5-f7520c906258636b4b8b24d3b0cd175f653c74ad.tar.bz2
[svn-r14423] Description:
Change the 'coord' parameter for H5Sselect_elements() from 'hsize_t **' to 'hsize_t *' in this branch also. Tested on: Mac OS X/32 10.5.1 (amazon)
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_mdset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_mdset.c b/testpar/t_mdset.c
index 926f63f..73cdef7 100644
--- a/testpar/t_mdset.c
+++ b/testpar/t_mdset.c
@@ -1489,7 +1489,7 @@ void io_mode_confusion(void)
mpi_rank, fcn_name);
status = H5Sselect_elements(filespace, H5S_SELECT_SET, N,
- (const hsize_t **)&coord);
+ &coord);
VRFY(( status >= 0 ), "H5Sselect_elements() failed");