summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2008-12-11 19:34:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2008-12-11 19:34:27 (GMT)
commit796f5a9f4c889296d8bae1913c7e86107755100b (patch)
tree1b8abbcc8c7fad874ed0f440904a44b1076fdc5d /tools
parent4168cf3af65596824715ee7d4dd989d8578a95c0 (diff)
downloadhdf5-796f5a9f4c889296d8bae1913c7e86107755100b.zip
hdf5-796f5a9f4c889296d8bae1913c7e86107755100b.tar.gz
hdf5-796f5a9f4c889296d8bae1913c7e86107755100b.tar.bz2
[svn-r16183] Description:
Bring r16182 back from trunk: Rename internal routines, variables, macros, typedefs, etc. for chunked dataset storage from "istore" to some variant of "chunk" or "btree". Tested on: FreeBSD/32 6.3 (duty) in debug mode
Diffstat (limited to 'tools')
-rw-r--r--tools/misc/h5debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/misc/h5debug.c b/tools/misc/h5debug.c
index 0f0e593..db867ec 100644
--- a/tools/misc/h5debug.c
+++ b/tools/misc/h5debug.c
@@ -257,7 +257,7 @@ main(int argc, char *argv[])
status = H5G_node_debug(f, H5P_DATASET_XFER_DEFAULT, addr, stdout, 0, VCOL, extra);
break;
- case H5B_ISTORE_ID:
+ case H5B_CHUNK_ID:
/* Check for extra parameters */
if(extra == 0) {
fprintf(stderr, "ERROR: Need number of dimensions of chunk in order to dump chunk B-tree node\n");
@@ -267,7 +267,7 @@ main(int argc, char *argv[])
} /* end if */
ndims = (unsigned)extra;
- status = H5D_istore_debug(f, H5P_DATASET_XFER_DEFAULT, addr, stdout, 0, VCOL, ndims);
+ status = H5D_btree_debug(f, H5P_DATASET_XFER_DEFAULT, addr, stdout, 0, VCOL, ndims);
break;
default: