summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-09-06 20:30:00 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-09-06 20:30:00 (GMT)
commitc0ec9f92a66088fadc2cae40e8e3c5dad9a76e16 (patch)
tree42c10c34c764b3ebcd34c88572839c86d6d8ee28 /src
parent681b630ea53fbeb6bfa3bc6263b4926f55afdcf1 (diff)
downloadhdf5-c0ec9f92a66088fadc2cae40e8e3c5dad9a76e16.zip
hdf5-c0ec9f92a66088fadc2cae40e8e3c5dad9a76e16.tar.gz
hdf5-c0ec9f92a66088fadc2cae40e8e3c5dad9a76e16.tar.bz2
[svn-r2518] Backed out patch from user after further testing...
Diffstat (limited to 'src')
-rw-r--r--src/H5Spoint.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5Spoint.c b/src/H5Spoint.c
index e8e3dbf..7cd56bf 100644
--- a/src/H5Spoint.c
+++ b/src/H5Spoint.c
@@ -126,9 +126,10 @@ H5S_point_init (const struct H5O_layout_t UNUSED *layout,
EXAMPLES
REVISION LOG
--------------------------------------------------------------------------*/
-herr_t H5S_point_add (H5S_t *space, H5S_seloper_t op, size_t num_elem, const hssize_t **coord)
+herr_t H5S_point_add (H5S_t *space, H5S_seloper_t op, size_t num_elem, const hssize_t **_coord)
{
H5S_pnt_node_t *top, *curr, *new; /* Point selection nodes */
+ const hssize_t *coord=(const hssize_t *)_coord; /* Pointer to the actual coordinates */
uintn i; /* Counter */
herr_t ret_value=FAIL; /* return value */
@@ -161,7 +162,7 @@ herr_t H5S_point_add (H5S_t *space, H5S_seloper_t op, size_t num_elem, const hss
#endif /* QAK */
/* Copy over the coordinates */
- HDmemcpy(new->pnt,*coord+(i*space->extent.u.simple.rank),(space->extent.u.simple.rank*sizeof(hssize_t)));
+ HDmemcpy(new->pnt,coord+(i*space->extent.u.simple.rank),(space->extent.u.simple.rank*sizeof(hssize_t)));
#ifdef QAK
printf("%s: check 1.3\n",FUNC);
{
@@ -171,7 +172,7 @@ herr_t H5S_point_add (H5S_t *space, H5S_seloper_t op, size_t num_elem, const hss
printf("%s: pnt[%d]=%d\n",FUNC,(int)j,(int)new->pnt[j]);
printf("%s: coord[%d][%d]=%d\n",
FUNC, (int)i, (int)j,
- (int)**(coord+(i*space->extent.u.simple.rank)+j));
+ (int)*(coord+(i*space->extent.u.simple.rank)+j));
}
}
#endif /* QAK */