summaryrefslogtreecommitdiffstats
path: root/src/H5Sselect.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-07-19 17:53:10 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-07-19 17:53:10 (GMT)
commita67794b1bc35421f1267133a6f7b447db2a71a3a (patch)
treeaa38547346f4edca49987e56894c374fa2925009 /src/H5Sselect.c
parent5a1cb3c7a6e72c1ba6b2148637ee1c56e015e09b (diff)
downloadhdf5-a67794b1bc35421f1267133a6f7b447db2a71a3a.zip
hdf5-a67794b1bc35421f1267133a6f7b447db2a71a3a.tar.gz
hdf5-a67794b1bc35421f1267133a6f7b447db2a71a3a.tar.bz2
[svn-r19099] Description:
Fix const pointer issues for projection construction routine and also bump time before alarm kicks in to terminate a test from 20 minutes to 30 minutes, to give the PGI compiler tests w/debugging enabled a chance to finish. Tested on: Mac OS X/32 10.6.4 (amazon) w/debug Linux/32 2.6.18 (jam) w/PGI & debug
Diffstat (limited to 'src/H5Sselect.c')
-rw-r--r--src/H5Sselect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Sselect.c b/src/H5Sselect.c
index af3c9f9..17b7fab 100644
--- a/src/H5Sselect.c
+++ b/src/H5Sselect.c
@@ -1756,7 +1756,7 @@ done:
--------------------------------------------------------------------------*/
herr_t
H5S_select_construct_projection(const H5S_t *base_space, H5S_t **new_space_ptr,
- unsigned new_space_rank, const void *buf, void **adj_buf_ptr, hsize_t element_size)
+ unsigned new_space_rank, const void *buf, void const **adj_buf_ptr, hsize_t element_size)
{
H5S_t * new_space = NULL; /* New dataspace constructed */
hsize_t base_space_dims[H5S_MAX_RANK]; /* Current dimensions of base dataspace */
@@ -1944,7 +1944,7 @@ H5S_select_construct_projection(const H5S_t *base_space, H5S_t **new_space_ptr,
* value to the type cast buf pointer, cast the result back
* to a pointer to void, and assign the result to *adj_buf_ptr.
*/
- *adj_buf_ptr = (void *)(((const uint8_t *)buf) +
+ *adj_buf_ptr = (const void *)(((const uint8_t *)buf) +
((size_t)(projected_space_element_offset * element_size)));
} /* end if */
else