summaryrefslogtreecommitdiffstats
path: root/src/H5SM.c
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2007-01-09 15:11:16 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2007-01-09 15:11:16 (GMT)
commit6e40802f06d0d4f12a710522fd977531d36fafe9 (patch)
tree40f9549e155d34cbfc03612c6fd41259c9e5ace8 /src/H5SM.c
parent15b28ad04ab6894cfd308d7855798b6ed82305bc (diff)
downloadhdf5-6e40802f06d0d4f12a710522fd977531d36fafe9.zip
hdf5-6e40802f06d0d4f12a710522fd977531d36fafe9.tar.gz
hdf5-6e40802f06d0d4f12a710522fd977531d36fafe9.tar.bz2
[svn-r13126] More cleanup. Shared messages now use in-heap callbacks when searching
for a matching message, which should improve performance. Tested on Windows, kagiso, and smirom.
Diffstat (limited to 'src/H5SM.c')
-rwxr-xr-xsrc/H5SM.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5SM.c b/src/H5SM.c
index 49052eb..7942eb7 100755
--- a/src/H5SM.c
+++ b/src/H5SM.c
@@ -753,7 +753,7 @@ H5SM_convert_btree_to_list(H5F_t * f, H5SM_index_header_t * header, hid_t dxpl_i
/* Delete the B-tree and have messages copy themselves to the
* list as they're deleted
*/
- if(H5B2_delete(f, dxpl_id, H5SM_INDEX, btree_addr, H5SM_convert_to_list_op, list) < 0)
+ if(H5B2_delete(f, dxpl_id, H5SM_INDEX, btree_addr, H5SM_btree_convert_to_list_op, list) < 0)
HGOTO_ERROR(H5E_BTREE, H5E_CANTDELETE, FAIL, "unable to delete B-tree")
done: