summaryrefslogtreecommitdiffstats
path: root/src/H5Gdense.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-11-14 02:16:47 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-11-14 02:16:47 (GMT)
commitb00e032eb3ed0fc8d9ad44eb0ce5766efb4ac071 (patch)
treeb5d8aacb08ab41e9c52a248f4afd950793600be0 /src/H5Gdense.c
parentb56de1ddcc91e567b0f330f18441b6908956e6e7 (diff)
downloadhdf5-b00e032eb3ed0fc8d9ad44eb0ce5766efb4ac071.zip
hdf5-b00e032eb3ed0fc8d9ad44eb0ce5766efb4ac071.tar.gz
hdf5-b00e032eb3ed0fc8d9ad44eb0ce5766efb4ac071.tar.bz2
[svn-r17887] Description:
Convert dense attribute storage to use refactored v2 B-tree routines. Also fix some minor typos in the dense group handling code. Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode Mac OS X/32 10.6.2 (amazon) in debug mode Mac OS X/32 10.6.2 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode
Diffstat (limited to 'src/H5Gdense.c')
-rw-r--r--src/H5Gdense.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gdense.c b/src/H5Gdense.c
index 5e02174..7dea804 100644
--- a/src/H5Gdense.c
+++ b/src/H5Gdense.c
@@ -458,7 +458,7 @@ HDfprintf(stderr, "%s: HDstrlen(lnk->name) = %Zu, link_size = %Zu\n", FUNC, HDst
/* Check if we should create a creation order index v2 B-tree record */
if(linfo->index_corder) {
- /* Open the name index v2 B-tree */
+ /* Open the creation order index v2 B-tree */
HDassert(H5F_addr_defined(linfo->corder_bt2_addr));
if(NULL == (bt2_corder = H5B2_open(f, dxpl_id, linfo->corder_bt2_addr)))
HGOTO_ERROR(H5E_SYM, H5E_CANTOPENOBJ, FAIL, "unable to open v2 B-tree for creation order index")