diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-04-08 16:09:11 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-04-08 16:09:11 (GMT) |
commit | c57ae996124f708a4d1878e70ff5fb68c312cea7 (patch) | |
tree | 0f2c6ad119d6f4c78454b5ddbf7e9796afb3bedb /src | |
parent | 2886cd9e45b7f809a543a564929118c6145eb332 (diff) | |
download | hdf5-c57ae996124f708a4d1878e70ff5fb68c312cea7.zip hdf5-c57ae996124f708a4d1878e70ff5fb68c312cea7.tar.gz hdf5-c57ae996124f708a4d1878e70ff5fb68c312cea7.tar.bz2 |
Modification for num_elem based on PR feedback.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Spoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Spoint.c b/src/H5Spoint.c index a3f7df2..0bdabb4 100644 --- a/src/H5Spoint.c +++ b/src/H5Spoint.c @@ -1272,7 +1272,7 @@ H5S__point_deserialize(H5S_t **space, const uint8_t **p) uint8_t enc_size = 0; /* Encoded size of selection info */ hsize_t *coord = NULL, *tcoord; /* Pointer to array of elements */ const uint8_t *pp; /* Local pointer for decoding */ - hsize_t num_elem = 0; /* Number of elements in selection */ + uint64_t num_elem = 0; /* Number of elements in selection */ unsigned rank; /* Rank of points */ unsigned i, j; /* local counting variables */ herr_t ret_value = SUCCEED; /* Return value */ |