diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2022-05-08 09:38:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-08 09:38:32 (GMT) |
commit | ea27e1380cf02e5f92d61cf9509596914c14e4df (patch) | |
tree | e753ad8ab4717fd9c1359b7a65dad274c599ca1c /examples | |
parent | c0f314ad03f5ef0b4366ee625c83a7955a9ea87f (diff) | |
download | hdf5-ea27e1380cf02e5f92d61cf9509596914c14e4df.zip hdf5-ea27e1380cf02e5f92d61cf9509596914c14e4df.tar.gz hdf5-ea27e1380cf02e5f92d61cf9509596914c14e4df.tar.bz2 |
Fixes for various warnings/alignment with develop branch (#1755)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/h5_extlink.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/h5_extlink.c b/examples/h5_extlink.c index a7bb355..4508fb6 100644 --- a/examples/h5_extlink.c +++ b/examples/h5_extlink.c @@ -207,7 +207,7 @@ extlink_prefix_example(void) * that a path was supplied in the udata. */ static hid_t UD_soft_traverse(const char *link_name, hid_t cur_group, const void *udata, size_t udata_size, - hid_t lapl_id); + hid_t lapl_id, hid_t dxpl_id); static void soft_link_example(void) @@ -276,7 +276,8 @@ soft_link_example(void) */ static hid_t -UD_soft_traverse(const char *link_name, hid_t cur_group, const void *udata, size_t udata_size, hid_t lapl_id) +UD_soft_traverse(const char *link_name, hid_t cur_group, const void *udata, size_t udata_size, hid_t lapl_id, + hid_t dxpl_id) { const char *target = (const char *)udata; hid_t ret_value; |