diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-03-03 20:06:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-03-03 20:06:29 (GMT) |
commit | 1083071530471faf1641b4182785311aa9bac674 (patch) | |
tree | e0068035580a0b04407cea1a12947e3ea528fbf3 /src/H5Distore.c | |
parent | 5585643bb3643bbba7245b2c742e8008d8df5cfc (diff) | |
download | hdf5-1083071530471faf1641b4182785311aa9bac674.zip hdf5-1083071530471faf1641b4182785311aa9bac674.tar.gz hdf5-1083071530471faf1641b4182785311aa9bac674.tar.bz2 |
[svn-r6452] Purpose:
Code cleanup
Description:
Add B-tree node debugging routine for symbol table nodes (i.e. groups)
Platforms tested:
FreeBSD 4.7 (sleipnir)
Diffstat (limited to 'src/H5Distore.c')
-rw-r--r-- | src/H5Distore.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5Distore.c b/src/H5Distore.c index 3afc866..cbdd504 100644 --- a/src/H5Distore.c +++ b/src/H5Distore.c @@ -141,8 +141,9 @@ static herr_t H5F_istore_decode_key(H5F_t *f, H5B_t *bt, uint8_t *raw, void *_key); static herr_t H5F_istore_encode_key(H5F_t *f, H5B_t *bt, uint8_t *raw, void *_key); -static herr_t H5F_istore_debug_key(FILE *stream, int indent, int fwidth, - const void *key, const void *udata); +static herr_t H5F_istore_debug_key(FILE *stream, H5F_t *f, hid_t dxpl_id, + int indent, int fwidth, const void *key, + const void *udata); static haddr_t H5F_istore_get_addr(H5F_t *f, hid_t dxpl_id, const H5O_layout_t *layout, const hssize_t offset[]); static H5B_iterate_t H5F_istore_prune_extent(H5F_t *f, hid_t dxpl_id, void *_lt_key, haddr_t addr, @@ -349,7 +350,7 @@ done: *------------------------------------------------------------------------- */ static herr_t -H5F_istore_debug_key (FILE *stream, int indent, int fwidth, +H5F_istore_debug_key (FILE *stream, H5F_t UNUSED *f, hid_t UNUSED dxpl_id, int indent, int fwidth, const void *_key, const void *_udata) { const H5F_istore_key_t *key = (const H5F_istore_key_t *)_key; |