diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-03-17 22:46:27 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-03-17 22:46:27 (GMT) |
commit | 96dd634330502cdde53905c9edbef56028323969 (patch) | |
tree | 18e95df957a1b8b78604016aa8a6108b3c85c10b /test/theap.c | |
parent | 4494348eb229ae0661754c974695d8a293c6168b (diff) | |
download | hdf5-96dd634330502cdde53905c9edbef56028323969.zip hdf5-96dd634330502cdde53905c9edbef56028323969.tar.gz hdf5-96dd634330502cdde53905c9edbef56028323969.tar.bz2 |
[svn-r324] Change H5A (atoms) to H5I (IDs)
Diffstat (limited to 'test/theap.c')
-rw-r--r-- | test/theap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/theap.c b/test/theap.c index 4a4862d..4ffc892 100644 --- a/test/theap.c +++ b/test/theap.c @@ -17,7 +17,7 @@ #include <testhdf5.h> #include <H5private.h> -#include <H5Aprivate.h> +#include <H5Iprivate.h> #include <H5ACprivate.h> #include <H5Pprivate.h> #include <H5Fprivate.h> @@ -57,8 +57,8 @@ test_heap(void) /* Create the file */ fid = H5Fcreate("theap.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); CHECK(fid, FAIL, "H5Fcreate"); - f = H5A_object(fid); - CHECK(f, NULL, "H5Aatom_object"); + f = H5I_object(fid); + CHECK(f, NULL, "H5I_object"); /* Create a new heap */ status = H5H_create(f, H5H_LOCAL, 0, &heap_addr /*out */ ); |