summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2019-09-12 18:51:39 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2019-09-12 18:51:39 (GMT)
commitfaf3336f522ec0e1764418e3b05b6d445520f857 (patch)
tree87dfc7abf5b50abac5bad37ca15abb3327e5bc76 /src
parent93352e65eae47a876297c87a943a97cc5c2dd1c8 (diff)
downloadhdf5-faf3336f522ec0e1764418e3b05b6d445520f857.zip
hdf5-faf3336f522ec0e1764418e3b05b6d445520f857.tar.gz
hdf5-faf3336f522ec0e1764418e3b05b6d445520f857.tar.bz2
Quiet compiler warnings about signedness by changing a signed
integer to an unsigned one.
Diffstat (limited to 'src')
-rw-r--r--src/H5PB.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PB.c b/src/H5PB.c
index f11579c..201de7f 100644
--- a/src/H5PB.c
+++ b/src/H5PB.c
@@ -1751,7 +1751,7 @@ H5PB_vfd_swmr__update_index(H5F_t * f,
*
* Obviously, this must be fixed for the production version.
*/
- int32_t new_index_entry_index;
+ uint32_t new_index_entry_index;
new_index_entry_index = f->shared->mdf_idx_entries_used +
idx_ent_added++;