summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2019-11-13 17:32:38 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:17:27 (GMT)
commit4440ccca7d66b2cd8893619320e5b94093c2a62b (patch)
tree30f0a479821708336391e97497d3ec3dcdccad0c /src
parent46ed46aa72cf9c08a38d6094819235c88a109fe1 (diff)
downloadhdf5-4440ccca7d66b2cd8893619320e5b94093c2a62b.zip
hdf5-4440ccca7d66b2cd8893619320e5b94093c2a62b.tar.gz
hdf5-4440ccca7d66b2cd8893619320e5b94093c2a62b.tar.bz2
Change a signed variable to unsigned to avoid a warning about the sign
being lost by a cast.
Diffstat (limited to 'src')
-rw-r--r--src/H5Dchunk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c
index 22e62fb..1b0881b 100644
--- a/src/H5Dchunk.c
+++ b/src/H5Dchunk.c
@@ -2178,7 +2178,7 @@ H5D__create_chunk_mem_map_1d(const H5D_chunk_map_t *fm)
/* Iterate over each chunk in the chunk list */
curr_node = H5SL_first(fm->sel_chunks);
while(curr_node) {
- hssize_t schunk_points; /* Number of elements in chunk selection */
+ hsize_t schunk_points; /* Number of elements in chunk selection */
hsize_t tmp_count = 1;
/* Get pointer to chunk's information */