summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-08-12 22:25:37 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-08-12 22:25:37 (GMT)
commit58067df6c710c92c596ceac6b570f085e69c25d4 (patch)
tree334a3a432970dce6dccd88bbd36d69fb0a86ec43
parent328d540a34a6ccabd9a354453b38accef0dd6682 (diff)
downloadhdf5-58067df6c710c92c596ceac6b570f085e69c25d4.zip
hdf5-58067df6c710c92c596ceac6b570f085e69c25d4.tar.gz
hdf5-58067df6c710c92c596ceac6b570f085e69c25d4.tar.bz2
[svn-r17348] Description:
Fix missed change to constant that only the Solaris build detected. 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/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-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
-rw-r--r--src/H5Dbtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dbtree.c b/src/H5Dbtree.c
index b201023..9676ab2 100644
--- a/src/H5Dbtree.c
+++ b/src/H5Dbtree.c
@@ -1471,7 +1471,7 @@ H5D_btree_debug(H5F_t *f, hid_t dxpl_id, haddr_t addr, FILE * stream, int indent
/* Reset "fake" storage info */
HDmemset(&storage, 0, sizeof(storage));
- storage.idx_type = H5D_CHUNK_BTREE;
+ storage.idx_type = H5D_CHUNK_IDX_BTREE;
/* Allocate the shared structure */
if(H5D_btree_shared_create(f, &storage, ndims) < 0)