summaryrefslogtreecommitdiffstats
path: root/src/H5Bcache.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2016-11-17 22:25:28 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2016-11-17 22:25:28 (GMT)
commit248a93cde8d87dd3a8162831103b5358a166fed8 (patch)
tree27d7fdccfef43d717754d102708b84fe29f6b962 /src/H5Bcache.c
parentfe849d26cd9b80df1e0e5203d050ad2ccea438c5 (diff)
parentbe27e1ad79dfa0507f589b29d938b7e1020a5b2d (diff)
downloadhdf5-248a93cde8d87dd3a8162831103b5358a166fed8.zip
hdf5-248a93cde8d87dd3a8162831103b5358a166fed8.tar.gz
hdf5-248a93cde8d87dd3a8162831103b5358a166fed8.tar.bz2
Merge pull request #162 in HDFFV/hdf5 from ~KOZIOL/hdf5:develop_merge_revise_chunks_07 to develop
* commit 'be27e1ad79dfa0507f589b29d938b7e1020a5b2d': Remove explicit support within the metadata cache for tracked compressed entries, they are now completely handled in the clients.
Diffstat (limited to 'src/H5Bcache.c')
-rw-r--r--src/H5Bcache.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/H5Bcache.c b/src/H5Bcache.c
index 8354e8e..d485049 100644
--- a/src/H5Bcache.c
+++ b/src/H5Bcache.c
@@ -57,8 +57,7 @@
static herr_t H5B__get_load_size(const void *udata, size_t *image_len);
static void *H5B__deserialize(const void *image, size_t len, void *udata,
hbool_t *dirty);
-static herr_t H5B__image_len(const void *thing, size_t *image_len,
- hbool_t *compressed_ptr, size_t *compressed_image_len_ptr);
+static herr_t H5B__image_len(const void *thing, size_t *image_len);
static herr_t H5B__serialize(const H5F_t *f, void *image, size_t len,
void *thing);
static herr_t H5B__free_icr(void *thing);
@@ -248,8 +247,7 @@ done:
*-------------------------------------------------------------------------
*/
static herr_t
-H5B__image_len(const void *_thing, size_t *image_len,
- hbool_t H5_ATTR_UNUSED *compressed_ptr, size_t H5_ATTR_UNUSED *compressed_image_len_ptr)
+H5B__image_len(const void *_thing, size_t *image_len)
{
const H5B_t *bt = (const H5B_t *)_thing; /* Pointer to the B-tree node */
H5B_shared_t *shared; /* Pointer to shared B-tree info */