summaryrefslogtreecommitdiffstats
path: root/src/H5Fpublic.h
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-01-16 22:51:08 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-01-16 22:51:08 (GMT)
commit2754bb2b764a22aac5492ea4ba5d023e08c8eebb (patch)
treeebb621ab82d047b3e5f7326068b1fa414e3917c3 /src/H5Fpublic.h
parentfe7965d38f818e0c4d0154c0172703fbe71aec8d (diff)
downloadhdf5-2754bb2b764a22aac5492ea4ba5d023e08c8eebb.zip
hdf5-2754bb2b764a22aac5492ea4ba5d023e08c8eebb.tar.gz
hdf5-2754bb2b764a22aac5492ea4ba5d023e08c8eebb.tar.bz2
Change md_pages_reserved and pb_expansion_threshold parameters to uint32_t from
int32_t.
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r--src/H5Fpublic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h
index a24a2c0..a462dc9 100644
--- a/src/H5Fpublic.h
+++ b/src/H5Fpublic.h
@@ -303,8 +303,8 @@ typedef struct H5F_vfd_swmr_config_t {
uint32_t max_lag;
hbool_t writer;
hbool_t flush_raw_data;
- int32_t md_pages_reserved;
- int32_t pb_expansion_threshold;
+ uint32_t md_pages_reserved;
+ uint32_t pb_expansion_threshold;
char md_file_path[H5F__MAX_VFD_SWMR_FILE_NAME_LEN + 1];
char log_file_path[H5F__MAX_VFD_SWMR_FILE_NAME_LEN + 1];
} H5F_vfd_swmr_config_t;