diff options
-rw-r--r-- | src/H5B2leaf.c | 3 | ||||
-rw-r--r-- | src/H5I.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/H5B2leaf.c b/src/H5B2leaf.c index beca40c..b50efad 100644 --- a/src/H5B2leaf.c +++ b/src/H5B2leaf.c @@ -1027,7 +1027,8 @@ done: *------------------------------------------------------------------------- */ H5_ATTR_PURE herr_t -H5B2__assert_leaf(const H5B2_hdr_t *hdr, const H5B2_leaf_t *leaf) +H5B2__assert_leaf(const H5B2_hdr_t H5_ATTR_SANITY_CHECK *hdr, + const H5B2_leaf_t H5_ATTR_SANITY_CHECK *leaf) { /* General sanity checking on node */ HDassert(leaf->nrec <= hdr->node_info->split_nrec); @@ -215,7 +215,7 @@ H5I_term_package(void) *------------------------------------------------------------------------- */ H5I_type_t -H5Iregister_type(size_t H5_ATTR_SANITY_CHECK hash_size, unsigned reserved, H5I_free_t free_func) +H5Iregister_type(size_t hash_size, unsigned reserved, H5I_free_t free_func) { H5I_class_t *cls = NULL; /* New ID class */ H5I_type_t new_type; /* New ID type value */ |