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>2019-11-13 17:32:38 (GMT)
commit3f11ed26f77d3adabe61dc0c97c00994b801db81 (patch)
treebed7c3de47ae5a3c8ac3db9f7e303411482990f5 /src
parent37eb3dd7d22af773ba09da1577c3f07fe2243571 (diff)
downloadhdf5-3f11ed26f77d3adabe61dc0c97c00994b801db81.zip
hdf5-3f11ed26f77d3adabe61dc0c97c00994b801db81.tar.gz
hdf5-3f11ed26f77d3adabe61dc0c97c00994b801db81.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 c93fa38..3575aab 100644
--- a/src/H5Dchunk.c
+++ b/src/H5Dchunk.c
@@ -2177,7 +2177,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 */