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/istore.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/istore.c')
-rw-r--r-- | test/istore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/istore.c b/test/istore.c index 68feb9c..2ba7142 100644 --- a/test/istore.c +++ b/test/istore.c @@ -8,7 +8,7 @@ * Purpose: Tests various aspects of indexed raw data storage. */ #include <H5private.h> -#include <H5Aprivate.h> +#include <H5Iprivate.h> #include <H5Pprivate.h> #include <H5Fprivate.h> #include <H5Gprivate.h> @@ -577,7 +577,7 @@ main(int argc, char *argv[]) */ template_id = H5Pcreate(H5P_FILE_CREATE); H5Pset_sizes(template_id, 8, 0); - creation_template = H5A_object(template_id); + creation_template = H5I_object(template_id); /* Create the test file */ if (NULL == (f = H5F_open(FILENAME, |