summaryrefslogtreecommitdiffstats
path: root/src/H5Shyper.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1999-02-18 19:38:45 (GMT)
committerRobb Matzke <matzke@llnl.gov>1999-02-18 19:38:45 (GMT)
commitaedc78af6be943a4070c0e04cd157c9e1b17d06e (patch)
tree9b19cda6805881e0ef9691feb0881def41530ee0 /src/H5Shyper.c
parentef9c22ab618bb58a2cab8c97dffd6366c768d0b0 (diff)
downloadhdf5-aedc78af6be943a4070c0e04cd157c9e1b17d06e.zip
hdf5-aedc78af6be943a4070c0e04cd157c9e1b17d06e.tar.gz
hdf5-aedc78af6be943a4070c0e04cd157c9e1b17d06e.tar.bz2
[svn-r1081] Changes since 19990218
---------------------- ./src/H5Shyper.c Changed hyperslab offset arrays to signed quantities to get rid of warnings on DEC cluster. ./src/H5Flow.c ./src/H5Fprivate.h Changed the objno argument of H5F_addr_pack() to be unsigned to get rid of warnings on DEC cluster.
Diffstat (limited to 'src/H5Shyper.c')
-rw-r--r--src/H5Shyper.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/H5Shyper.c b/src/H5Shyper.c
index 5c1863f..8657617 100644
--- a/src/H5Shyper.c
+++ b/src/H5Shyper.c
@@ -2812,12 +2812,14 @@ H5S_hyper_select_serialize (const H5S_t *space, uint8_t *buf)
herr_t
H5S_hyper_select_deserialize (H5S_t *space, const uint8_t *buf)
{
- int32_t rank; /* Rank of points */
- size_t num_elem=0; /* Number of elements in selection */
- hsize_t *start=NULL,*count=NULL; /* hyperslab information */
- hsize_t *tstart,*tcount; /* temporary hyperslab pointers */
- uintn i,j; /* local counting variables */
- herr_t ret_value=FAIL; /* return value */
+ int32_t rank; /* rank of points */
+ size_t num_elem=0; /* number of elements in selection */
+ hssize_t *start=NULL; /* hyperslab start information */
+ hsize_t *count=NULL; /* hyperslab count information */
+ hssize_t *tstart=NULL; /* temporary hyperslab pointers */
+ hsize_t *tcount=NULL; /* temporary hyperslab pointers */
+ uintn i,j; /* local counting variables */
+ herr_t ret_value=FAIL; /* return value */
FUNC_ENTER (H5S_hyper_select_deserialize, FAIL);