diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-03-31 20:31:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-31 20:31:20 (GMT) |
commit | 0f0721f2d616ac9edd7cea642baa176c87713757 (patch) | |
tree | 7dc2ae7cc63c819a51d9cea59f09f9800610cdb2 /hl/src | |
parent | 6dae5c2cb565fce010db28a5bcfc0220edb98921 (diff) | |
download | hdf5-0f0721f2d616ac9edd7cea642baa176c87713757.zip hdf5-0f0721f2d616ac9edd7cea642baa176c87713757.tar.gz hdf5-0f0721f2d616ac9edd7cea642baa176c87713757.tar.bz2 |
Minor warning fixes in develop (#526)
* Committing clang-format changes
* Minor warning fixes
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'hl/src')
-rw-r--r-- | hl/src/H5PT.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/src/H5PT.c b/hl/src/H5PT.c index d9fdfb0..f5fb99f 100644 --- a/hl/src/H5PT.c +++ b/hl/src/H5PT.c @@ -29,7 +29,7 @@ static H5I_type_t H5PT_ptable_id_type = H5I_UNINIT; #define H5PT_HASH_TABLE_SIZE 64 /* Packet Table private functions */ -static herr_t H5PT_free_id(void *id); +static herr_t H5PT_free_id(void *id, void **_ctx); static herr_t H5PT_close(htbl_t *table); static herr_t H5PT_create_index(htbl_t *table_id); static herr_t H5PT_set_index(htbl_t *table_id, hsize_t pt_index); @@ -402,7 +402,7 @@ error: *------------------------------------------------------------------------- */ static herr_t -H5PT_free_id(void *id) +H5PT_free_id(void *id, void H5_ATTR_UNUSED **_ctx) { HDfree(id); return SUCCEED; |