summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-04-07 14:21:27 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-04-07 14:21:27 (GMT)
commit25bafe0063ca867b5f91645d5d51b87d121e9ac5 (patch)
treea1b28b2e0e9b62279c07c20031a9bc07d9b6adfe /src
parenta788202831ae8251e152edaf8dd43272e449f4c7 (diff)
downloadhdf5-25bafe0063ca867b5f91645d5d51b87d121e9ac5.zip
hdf5-25bafe0063ca867b5f91645d5d51b87d121e9ac5.tar.gz
hdf5-25bafe0063ca867b5f91645d5d51b87d121e9ac5.tar.bz2
Fix the width of an index variable.
Diffstat (limited to 'src')
-rw-r--r--src/H5Fvfd_swmr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fvfd_swmr.c b/src/H5Fvfd_swmr.c
index 9b54fac..c0a6f3c 100644
--- a/src/H5Fvfd_swmr.c
+++ b/src/H5Fvfd_swmr.c
@@ -438,7 +438,7 @@ H5F_update_vfd_swmr_metadata_file(H5F_t *f, uint32_t num_entries,
shadow_defree_t *prev;
shadow_defree_t *shadow_defree;
haddr_t md_addr; /* Address in the metadata file */
- unsigned i; /* Local index variable */
+ uint32_t i; /* Local index variable */
herr_t ret_value = SUCCEED; /* Return value */
bool queue_was_nonempty;