summaryrefslogtreecommitdiffstats
path: root/src/H5S.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-10-02 19:59:46 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-10-02 19:59:46 (GMT)
commit79aecf895393d2871764a9405c9698fd73225925 (patch)
treee14ce866c67d4ef68916e8b79c2f3c35dc51c463 /src/H5S.c
parenta36a5b30d79f037169fc5cf95a2a600ded674409 (diff)
downloadhdf5-79aecf895393d2871764a9405c9698fd73225925.zip
hdf5-79aecf895393d2871764a9405c9698fd73225925.tar.gz
hdf5-79aecf895393d2871764a9405c9698fd73225925.tar.bz2
[svn-r12706] Description:
Clean up some of the warnings on 64-bit Linux... Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2) Too minor to require h5committest
Diffstat (limited to 'src/H5S.c')
-rw-r--r--src/H5S.c36
1 files changed, 17 insertions, 19 deletions
diff --git a/src/H5S.c b/src/H5S.c
index 77468ce..b11a2bd 100644
--- a/src/H5S.c
+++ b/src/H5S.c
@@ -93,8 +93,7 @@ H5S_init_interface(void)
FUNC_ENTER_NOAPI_NOINIT(H5S_init_interface);
/* Initialize the atom group for the file IDs */
- if (H5I_register_type(H5I_DATASPACE, H5I_DATASPACEID_HASHSIZE,
- H5S_RESERVED_ATOMS, (H5I_free_t)H5S_close)<0)
+ if(H5I_register_type(H5I_DATASPACE, (size_t)H5I_DATASPACEID_HASHSIZE, H5S_RESERVED_ATOMS, (H5I_free_t)H5S_close) < 0)
HGOTO_ERROR (H5E_DATASPACE, H5E_CANTINIT, FAIL, "unable to initialize interface");
#ifdef H5_HAVE_PARALLEL
@@ -620,18 +619,18 @@ H5S_extent_copy(H5S_extent_t *dst, const H5S_extent_t *src)
break;
case H5S_SIMPLE:
- if (src->size) {
- dst->size = H5FL_ARR_MALLOC(hsize_t,src->rank);
- for (u = 0; u < src->rank; u++)
+ if(src->size) {
+ dst->size = H5FL_ARR_MALLOC(hsize_t, (size_t)src->rank);
+ for(u = 0; u < src->rank; u++)
dst->size[u] = src->size[u];
- }
+ } /* end if */
else
- dst->size=NULL;
- if (src->max) {
- dst->max = H5FL_ARR_MALLOC(hsize_t,src->rank);
- for (u = 0; u < src->rank; u++)
+ dst->size = NULL;
+ if(src->max) {
+ dst->max = H5FL_ARR_MALLOC(hsize_t, (size_t)src->rank);
+ for(u = 0; u < src->rank; u++)
dst->max[u] = src->max[u];
- }
+ } /* end if */
else
dst->max=NULL;
break;
@@ -1343,23 +1342,22 @@ H5S_set_extent_simple (H5S_t *space, unsigned rank, const hsize_t *dims,
/* Set the rank and allocate space for the dims */
space->extent.rank = rank;
- space->extent.size = H5FL_ARR_MALLOC(hsize_t,rank);
+ space->extent.size = H5FL_ARR_MALLOC(hsize_t, (size_t)rank);
/* Copy the dimensions & compute the number of elements in the extent */
- for(u=0, nelem=1; u<space->extent.rank; u++) {
- space->extent.size[u]=dims[u];
- nelem*=dims[u];
+ for(u = 0, nelem = 1; u < space->extent.rank; u++) {
+ space->extent.size[u] = dims[u];
+ nelem *= dims[u];
} /* end for */
space->extent.nelem = nelem;
/* Copy the maximum dimensions if specified */
- if(max!=NULL) {
- space->extent.max = H5FL_ARR_MALLOC(hsize_t,rank);
+ if(max != NULL) {
+ space->extent.max = H5FL_ARR_MALLOC(hsize_t, (size_t)rank);
HDmemcpy(space->extent.max, max, sizeof(hsize_t) * rank);
} /* end if */
- else {
+ else
space->extent.max = NULL;
- }
}
/* Selection related cleanup */