diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-01-19 18:48:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-01-19 18:48:48 (GMT) |
commit | 99208cee65ea33ce3e5b91a96aa51cdb64e26700 (patch) | |
tree | 256aa93bd0b4d1e7d0af2b5344f918232ebdb996 /src/H5B.c | |
parent | 43163efc35e32265687b7f0934c5cc62f976f1ce (diff) | |
download | hdf5-99208cee65ea33ce3e5b91a96aa51cdb64e26700.zip hdf5-99208cee65ea33ce3e5b91a96aa51cdb64e26700.tar.gz hdf5-99208cee65ea33ce3e5b91a96aa51cdb64e26700.tar.bz2 |
[svn-r8079] Purpose:
Add tests & docs
Description:
Added tests for the recent B-tree bug fixes & document their fix in the
release notes.
Platforms tested:
FreeBSD 4.9 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5B.c')
-rw-r--r-- | src/H5B.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -364,7 +364,7 @@ H5B_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, const void *_type, void *udata) /* node type and level */ if (*p++ != type->id) - HGOTO_ERROR(H5E_BTREE, H5E_CANTLOAD, NULL, "incorrect B-tree node level") + HGOTO_ERROR(H5E_BTREE, H5E_CANTLOAD, NULL, "incorrect B-tree node type") bt->level = *p++; /* entries used */ |