summaryrefslogtreecommitdiffstats
path: root/test/istore.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-10-13 17:17:50 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-10-13 17:17:50 (GMT)
commit0e9e49d635c1acb45483e6d0c77b28610757ff32 (patch)
tree76f41c84a55e3b86b7e72789649f4b401f7ebe3c /test/istore.c
parent60b0109164d3b6a1abbed3bbc923f43dbab043df (diff)
downloadhdf5-0e9e49d635c1acb45483e6d0c77b28610757ff32.zip
hdf5-0e9e49d635c1acb45483e6d0c77b28610757ff32.tar.gz
hdf5-0e9e49d635c1acb45483e6d0c77b28610757ff32.tar.bz2
[svn-r753] Changes since 19981008
---------------------- ./src/H5F.c ./src/H5Fprivate.h ./src/H5G.c ./src/H5Gpkg.h ./src/H5Gprivate.h ./src/H5Gpublic.h ./test/istore.c ./test/tstab.c Removed CWG functionality. ./tools/Makefile.in Added `_test' where I added `test' last week. Maybe now the snapshots will start up again...
Diffstat (limited to 'test/istore.c')
-rw-r--r--test/istore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/istore.c b/test/istore.c
index 468ee01..6f73d82 100644
--- a/test/istore.c
+++ b/test/istore.c
@@ -135,7 +135,7 @@ new_object(H5F_t *f, const char *name, intn ndims, H5G_entry_t *ent/*out*/)
return -1;
}
/* Give the object header a name */
- if (H5G_insert(H5G_entof(H5G_getcwg(f)), name, ent) < 0) {
+ if (H5G_insert(H5G_entof(H5G_rootof(f)), name, ent) < 0) {
printf("*FAILED*\n");
if (!isatty(1)) {
AT();
@@ -639,7 +639,7 @@ main(int argc, char *argv[])
* By creating a group we cause the library to emit it's debugging
* diagnostic messages before we begin testing...
*/
- dir = H5G_create(H5G_entof(H5G_getcwg(f)), "flushing_diagnostics", 0);
+ dir = H5G_create(H5G_entof(H5G_rootof(f)), "flushing_diagnostics", 0);
H5G_close(dir);
dir = NULL;