summaryrefslogtreecommitdiffstats
path: root/src/H5VLpassthru.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-08-22 10:03:38 (GMT)
committerGitHub <noreply@github.com>2022-08-22 10:03:38 (GMT)
commit1ac9a67cc9834af4915aeea3d00357b7914a44cd (patch)
tree281f19adddb6b7609de8fa81aad8bcdd0b4372f7 /src/H5VLpassthru.c
parentb70c60e1597d208bc2de294ebb0dfce2e7bd6aae (diff)
downloadhdf5-feature/vol_cap_flags.zip
hdf5-feature/vol_cap_flags.tar.gz
hdf5-feature/vol_cap_flags.tar.bz2
Convert unsigned cap flag field to uint64_t and add flags (#2050)feature/vol_cap_flags
* Convert unsigned cap flag field to uint64_t and add flags * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/H5VLpassthru.c')
-rw-r--r--src/H5VLpassthru.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5VLpassthru.c b/src/H5VLpassthru.c
index 986629f..af79284 100644
--- a/src/H5VLpassthru.c
+++ b/src/H5VLpassthru.c
@@ -207,7 +207,7 @@ static herr_t H5VL_pass_through_object_optional(void *obj, const H5VL_loc_params
/* Container/connector introspection callbacks */
static herr_t H5VL_pass_through_introspect_get_conn_cls(void *obj, H5VL_get_conn_lvl_t lvl,
const H5VL_class_t **conn_cls);
-static herr_t H5VL_pass_through_introspect_get_cap_flags(const void *info, unsigned *cap_flags);
+static herr_t H5VL_pass_through_introspect_get_cap_flags(const void *info, uint64_t *cap_flags);
static herr_t H5VL_pass_through_introspect_opt_query(void *obj, H5VL_subclass_t cls, int opt_type,
uint64_t *flags);
@@ -2553,7 +2553,7 @@ H5VL_pass_through_introspect_get_conn_cls(void *obj, H5VL_get_conn_lvl_t lvl, co
*-------------------------------------------------------------------------
*/
herr_t
-H5VL_pass_through_introspect_get_cap_flags(const void *_info, unsigned *cap_flags)
+H5VL_pass_through_introspect_get_cap_flags(const void *_info, uint64_t *cap_flags)
{
const H5VL_pass_through_info_t *info = (const H5VL_pass_through_info_t *)_info;
herr_t ret_value;